Skip to content

Commit b64e31b

Browse files
refactor(components): add new Navbar component logo
1 parent 56f39ce commit b64e31b

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

public/logo.svg

Lines changed: 9 additions & 0 deletions
Loading

src/components/common/Navbar.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import { FaBars, FaGithub, FaHome, FaMoon } from "react-icons/fa"
1414
</div>
1515
<div class="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
1616
<div class="flex shrink-0 items-center">
17-
<img src="/favicon.svg" alt="Your Company" class="h-8 w-auto" />
17+
<img src="/logo.svg" alt="Your Company" class="h-8 w-auto" />
1818
</div>
1919
<div class="hidden sm:ml-6 sm:block">
2020
<div class="flex space-x-4">
21-
<a href="#" aria-current="page" class="rounded-md bg-gray-950/50 px-3 py-2 text-sm font-medium text-white">Dashboard</a>
22-
<a href="#" class="rounded-md px-3 py-2 text-sm font-medium text-gray-300 hover:bg-white/5 hover:text-white">Team</a>
23-
<a href="#" class="rounded-md px-3 py-2 text-sm font-medium text-gray-300 hover:bg-white/5 hover:text-white">Projects</a>
24-
<a href="#" class="rounded-md px-3 py-2 text-sm font-medium text-gray-300 hover:bg-white/5 hover:text-white">Calendar</a>
21+
<a href="#" aria-current="page" class="block rounded-md bg-gray-950/50 px-3 py-2 text-base font-medium text-white">Docs</a>
22+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Themes</a>
23+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Features</a>
24+
<a href="#" class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-white/5 hover:text-white">Updates</a>
2525
</div>
2626
</div>
2727
</div>

0 commit comments

Comments
 (0)