Feat: Changes

This commit is contained in:
Bruno
2023-05-16 18:47:13 +02:00
parent 0a24f2eb52
commit e0bf5dc02a
31 changed files with 8035 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<script lang="ts">
import '$styles/tailwind.css';
const pages = [
{ name: 'Home', icon: 'home', path: '/attendee' },
{ name: 'Chat', icon: 'chat', path: '/attendee/chat' },
{ name: 'Networking', icon: 'social', path: '/attendee/networking' },
{ name: 'Calendar', icon: 'calendar', path: '/attendee/calendar' }
] as const;
</script>
<div class="bg-[#0B2A37] h-screen w-screen">
<div />
<slot />
</div>
View File