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 ( - +
- +
- +
- +
- +
- +
- +
- +
);