Finish setting up the project. Moving to implementation

This commit is contained in:
Antoine Phan
2025-03-06 20:49:55 -05:00
parent 9034e2d5db
commit af7a911ef6
24 changed files with 87 additions and 33 deletions

View File

@@ -1,15 +1,18 @@
<script>
import NavButton from './NavButton.svelte';
import ECSESS from 'assets/ECSESS.png';
</script>
<nav class="bg-ecsess-black text-ecsess-200 mx-auto flex min-w-fit flex-wrap items-center justify-center px-4 pt-4">
<nav
class="bg-ecsess-black text-ecsess-200 mx-auto flex min-w-fit flex-wrap items-center justify-center px-4 pt-2"
>
<img src={ECSESS} alt="ECSESS Logo" class="w-20 p-2" />
<NavButton href="/">Home</NavButton>
<NavButton href="/council">Meet the council</NavButton>
<NavButton href="/events">Events</NavButton>
<NavButton href="/resources">Resources</NavButton>
<NavButton href="/join">Join ECSESS</NavButton>
{#if import.meta.env.DEV}
<NavButton href="/components">Componenets</NavButton>
{/if}
{#if import.meta.env.DEV}
<NavButton href="/showroom">Componenets</NavButton>
{/if}
</nav>