From ae98bd05d7c7e8097358988f501abd5a63182643 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 04:23:54 +0000 Subject: [PATCH] Bob AI: Connect projects page to navigation bar --- src/components/Layout.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6aed2d6..5fbbeee 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,15 +7,12 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { name: "About", href: "#about" }, - { name: "Projects", href: "#projects" }, - { name: "Contact", href: "#contact" }, - { name: "Hero", href: "#hero" }, - { name: "Features", href: "#features" }, - { name: "Metrics", href: "#metrics" }, - { name: "Testimonials", href: "#testimonials" }, + { name: "About", href: "/#about" }, { name: "Projects", href: "/projects" }, - + { name: "Features", href: "/#features" }, + { name: "Metrics", href: "/#metrics" }, + { name: "Testimonials", href: "/#testimonials" }, + { name: "Contact", href: "/#contact" }, ]; return ( -- 2.49.1