Migrate from previous project with updated dependencies ready for March 2025

This commit is contained in:
Antoine Phan
2025-03-06 19:12:19 -05:00
commit 1073f8e56a
32 changed files with 691 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<script>
import NavButton from './NavButton.svelte';
</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">
<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}
</nav>