diff --git a/src/app/page.tsx b/src/app/page.tsx index dc15450..5e9a15c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Products", id: "products" }, { name: "Custom Cakes", id: "custom" }, { name: "Gallery", id: "gallery" }, + { name: "Shop", id: "shop" }, { name: "Contact", id: "contact" } ]} button={{ @@ -236,7 +237,8 @@ export default function LandingPage() { { label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Products", href: "#products" }, - { label: "Gallery", href: "#gallery" } + { label: "Gallery", href: "#gallery" }, + { label: "Shop", href: "/products" } ] }, { @@ -262,4 +264,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..b56cbd2 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,147 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Sparkles } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}