From e0bb2b7d066b5e1afc736ad714caa689a5a10144 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 16:15:41 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f45da29..53c8a9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,6 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; @@ -11,41 +12,46 @@ import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function HomePage() { - const navItems = [{ name: "Home", id: "/" }]; + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + return ( - +
- +
- +
- +
- +
- +
- +
- +
);