Feat: Frontend

This commit is contained in:
Bruno
2023-05-16 20:37:28 +02:00
parent e0bf5dc02a
commit 6bbf58d35d
7 changed files with 217 additions and 5 deletions
+13 -5
View File
@@ -2,14 +2,22 @@
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' }
{ name: 'Dashboard', path: '/' },
{ name: 'Settings', path: '/settings' },
{ name: 'About', path: '/about' },
{ name: 'Docs', path: '/docs' },
{ name: 'Contact', path: '/contact' }
] as const;
</script>
<div class="bg-[#0B2A37] h-screen w-screen">
<div />
<div class="flex flex-row items-center px-20">
<img class="w-40" src="/icons/Logo.svg" alt="Logo" />
<div class="w-full justify-between flex px-5 lg:px-40 text-lg text-white">
{#each pages as link}
<a href={link.path}>{link.name}</a>
{/each}
</div>
</div>
<slot />
</div>