feat: add public/private event types

This commit is contained in:
Levente Orban
2025-08-27 08:47:05 +02:00
parent a91f863295
commit 4c387a10f1
9 changed files with 313 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
<nav class="relative z-50 backdrop-blur-md">
<div class="container mx-auto px-4">
<div class="flex h-16 items-center justify-between">
<div class="mt-4 flex h-16 flex-col items-center justify-between">
<!-- Logo/Brand -->
<div class="flex items-center">
<button
@@ -34,6 +34,13 @@
Home
</button>
<button
on:click={() => navigateTo('/discover')}
class={isActive('/discover') ? 'text-violet-400' : 'cursor-pointer'}
>
Discover
</button>
<button
on:click={() => navigateTo('/create')}
class={isActive('/create') ? 'text-violet-400' : 'cursor-pointer'}
@@ -45,7 +52,7 @@
on:click={() => navigateTo('/event')}
class={isActive('/event') ? 'text-violet-400' : 'cursor-pointer'}
>
List
My Events
</button>
</div>
</div>