Skip to content

Commit

Permalink
feat: Add navbar to navigate to events and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
slashtechno committed Feb 22, 2025
1 parent 1148202 commit 3edf6a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@
{/if}
</svelte:head>

<nav class="p-4 text-center rounded-b-full w-1/2 mx-auto bg-neutral">
<nav class="p-1 text-center rounded-b-full w-1/2 mx-auto bg-neutral relative max-h-30">
<a href="/" class="text-2xl font-bold text-neutral-content">Podium</a>
<div class="grid grid-cols-2 items-center p-2 w-7/12 mx-auto max-h-40 my-auto space-x-2">
<a href="/projects" class="btn btn-xs ring-1 ring-opacity-45 ring-accent">Projects</a>
<a href="/events" class="btn btn-xs ring-1 ring-opacity-45 ring-accent">Events</a>
</div>
</nav>
<!-- Check for auth on all pages -->
<!-- <CheckAuth /> -->
Expand Down

0 comments on commit 3edf6a3

Please sign in to comment.