From 8ae63e6e49b410fd2a173bed9e06c42f2cd2f18a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 15:21:29 +0000 Subject: [PATCH] Add src/app/catalogue/page.tsx --- src/app/catalogue/page.tsx | 180 +++++++++++++++++++++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 src/app/catalogue/page.tsx diff --git a/src/app/catalogue/page.tsx b/src/app/catalogue/page.tsx new file mode 100644 index 0000000..e6e083c --- /dev/null +++ b/src/app/catalogue/page.tsx @@ -0,0 +1,180 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Sparkles, TrendingUp, Mail, Award } from 'lucide-react'; + +export default function CataloguePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Catalogue", id: "/catalogue" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Shop", items: [ + { label: "New Arrivals", href: "/" }, + { label: "Best Sellers", href: "/" }, + { label: "Sale", href: "/" }, + { label: "All Products", href: "/shop" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "about" }, + { label: "Our Story", href: "about" }, + { label: "Sustainability", href: "#" }, + { label: "Careers", href: "#" }, + ], + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "contact" }, + { label: "Shipping Info", href: "#" }, + { label: "Returns", href: "#" }, + { label: "FAQ", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}