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