diff --git a/src/app/page.tsx b/src/app/page.tsx index d2c409d..3e03108 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { { name: "Contact", id: "contact" } ]} button={{ - text: "Order Now", href: "#collections" + text: "Order Now", href: "/products" }} /> @@ -125,7 +125,7 @@ export default function LandingPage() { } ]} buttons={[ - { text: "View Full Catalog", href: "#contact" } + { text: "View Full Catalog", href: "/products" } ]} /> diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..222abd8 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,134 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Gift, ArrowLeft } from 'lucide-react'; +import Link from 'next/link'; + +export default function ProductsPage() { + return ( + + + +
+ + + Back to Home + +
+ +
+ +
+ + +
+ ); +}