2 Commits

Author SHA1 Message Date
54bb7c56d1 Update src/app/page.tsx 2026-02-04 10:09:18 +00:00
8c3fefe3f1 Bob AI: Can you add a button to the navbar to see the enti... 2026-02-03 20:40:26 +00:00
2 changed files with 9 additions and 2 deletions

View File

@@ -36,8 +36,10 @@ export default function LandingPage() {
{ name: "Courses", id: "courses" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
{ name: "Contact", id: "contact" },
{ name: "Blog", id: "/blog" },
]}
/>
</div>

View File

@@ -8,6 +8,7 @@ import { Plus } from "lucide-react";
import { NavbarProps } from "@/types/navigation";
import { useScrollState } from "./useScrollState";
import { cls } from "@/lib/utils";
import Link from "next/link";
const SCROLL_THRESHOLD = 50;
@@ -74,6 +75,10 @@ const NavbarStyleApple = ({
aria-hidden="true"
/>
</button>
<Link href="/menu" className="hidden md:flex items-center gap-6">
<ButtonTextUnderline text="Menu" href="/menu" className="!text-base" />
</Link>
</div>
<MobileMenu