Skip to content

Commit cf36f85

Browse files
authored
Merge pull request #30 from BeyteFlow/features/product
Make navbar logo a link and update CTA route
2 parents 047991c + afaf1e2 commit cf36f85

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/assets/components/layout/Navbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ const Navbar: React.FC = () => {
2222

2323
{/* Logo */}
2424
<div className="shrink-0">
25-
<h1 className="text-2xl md:text-3xl font-bold tracking-tight text-[#3D1A12]">
25+
<Link to={"/"} className="text-2xl md:text-3xl font-bold tracking-tight text-[#3D1A12]">
2626
ZAYQ
27-
</h1>
27+
</Link>
2828
</div>
2929

3030
{/* Desktop Links */}
@@ -48,7 +48,7 @@ const Navbar: React.FC = () => {
4848
{/* Action Button + Mobile Toggle */}
4949
<div className="flex items-center space-x-4">
5050
<Link
51-
to="/buy"
51+
to="/products"
5252
className="hidden md:block bg-[#3D1A12] text-white px-8 py-3 rounded-xl font-semibold text-sm hover:bg-[#4D2A22] transition-colors shadow-sm"
5353
>
5454
Own now

0 commit comments

Comments
 (0)