diff --git a/src/app/page.tsx b/src/app/page.tsx index 5a3f6ac..379e301 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,21 +31,13 @@ export default function LandingPage() { @@ -54,141 +46,49 @@ export default function LandingPage() {
-
- -
-
@@ -343,33 +185,21 @@ export default function LandingPage() { { items: [ { - label: "About Us", - href: "#", - }, + label: "About Us", href: "#"}, { - label: "Showroom", - href: "#products", - }, + label: "Showroom", href: "/products"}, { - label: "Metrics", - href: "#metrics", - }, + label: "Metrics", href: "#metrics"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, ]} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..430e63f --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,61 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}