added settings and profile pages

This commit is contained in:
Edward Tirado Jr 2025-07-07 18:04:12 -05:00
parent 92b78e9c40
commit 56149f90b6
15 changed files with 451 additions and 34 deletions

View file

@ -0,0 +1,31 @@
<template>
<div
class="grid grid-rows-2 text-center sm:text-left sm:grid-rows-none sm:grid-cols-2 my-5 navbar w-full"
>
<NuxtLink class="block" to="/admin">
<h1 class="block site-title bloodseeker">Cinema Corona</h1>
</NuxtLink>
<ul
class="mt-3 sm:mt-0 justify-self-center sm:justify-self-end inline-flex space-x-5 bloodseeker leading-10"
>
<li>
<NuxtLink class="text-xl header-link" to="/lists">Lists</NuxtLink>
</li>
<li>
<NuxtLink class="text-xl header-link" to="/schedule">Schedule</NuxtLink>
</li>
<li>
<ProfileMenu />
</li>
</ul>
</div>
</template>
<script>
export default {
name: "navbar",
};
</script>
<style scoped></style>