Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Bit-Barron committed Oct 29, 2024
1 parent ddd624a commit 0f25552
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/lib/components/container/navbar/navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,22 @@

<header class="flex items-center justify-between p-4">
<nav class="flex space-x-4">
<button class="flex items-center text-white transition-colors duration-200 hover:text-red-400">
<Home class="mr-2 h-4 w-4" /> Guide
<button
on:click={() => goto('/')}
class="flex items-center text-white transition-colors duration-200 hover:text-red-400"
>
<Home class="mr-2 h-4 w-4" /> Home
</button>
<button class="flex items-center text-white transition-colors duration-200 hover:text-red-400">
<button
on:click={() => goto('/pricing')}
class="flex items-center text-white transition-colors duration-200 hover:text-red-400"
>
<DollarSign class="mr-2 h-4 w-4" /> Pricing
</button>
<button class="flex items-center text-white transition-colors duration-200 hover:text-red-400">
<button
on:click={() => goto('/contact')}
class="flex items-center text-white transition-colors duration-200 hover:text-red-400"
>
<Mail class="mr-2 h-4 w-4" /> Contact
</button>
</nav>
Expand Down

0 comments on commit 0f25552

Please sign in to comment.