Skip to content

Commit 30744b5

Browse files
committed
feat(navbar): ✨ enhance navigation with link components
- Replace static text with Link components for better routing - Update Logo component to use currentColor for stroke - Adjust Button components to use outline variant for consistency
1 parent 4b976e3 commit 30744b5

File tree

7 files changed

+1117
-1042
lines changed

7 files changed

+1117
-1042
lines changed

apps/registry/app/gameplan/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from "react";
2+
import Link from "next/link";
23

34
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
45
import { AvatarGroup } from "@/components/ui/avatar-group";
@@ -80,7 +81,7 @@ const GamePlanPage = () => {
8081
<div className="relative mx-auto w-full max-w-[540px] px-4 md:max-w-[720px] lg:max-w-[960px] xl:max-w-[1140px]">
8182
<nav className="mx-auto py-5 xl:max-w-[900px]">
8283
<p className="flex items-center justify-between text-ef-lg font-ef-medium leading-[115%] tracking-[0.24px]">
83-
Home
84+
<Link href="/">Home</Link>
8485
<ModeToggle />
8586
</p>
8687
</nav>

0 commit comments

Comments
 (0)