diff --git a/src/app/page.tsx b/src/app/page.tsx index 08b2321..a4fa709 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,6 +35,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Services", id: "services" }, { name: "Team", id: "team" }, + { name: "Products", id: "/products" }, { name: "Contact", id: "contact" } ]} button={{ text: "Schedule Viewing", href: "contact" }} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..655cd80 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles, Home, Award, Briefcase, Users, TrendingUp, DollarSign, Phone, Star } from "lucide-react"; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}