diff --git a/src/app/our-sweets/page.tsx b/src/app/our-sweets/page.tsx new file mode 100644 index 0000000..ea2c8a8 --- /dev/null +++ b/src/app/our-sweets/page.tsx @@ -0,0 +1,73 @@ +"use client"; + +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function OurSweetsPage() { + return ( + + + +
+ console.log(value) } + ]} + /> +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e06f69..99e72ae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import HeroCentered from '@/components/sections/hero/HeroCentered'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; + import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import FaqBase from '@/components/sections/faq/FaqBase'; import ContactSplit from '@/components/sections/contact/ContactSplit'; @@ -31,7 +31,7 @@ export default function Page() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "#about" }, - { name: "Sweets", id: "#products" }, + { name: "Our Sweets", id: "/our-sweets" }, { name: "Reviews", id: "#testimonials" }, { name: "FAQ", id: "#faq" }, { name: "Contact", id: "#contact" } @@ -51,7 +51,7 @@ export default function Page() { ]} avatarText="Loved by sweet enthusiasts everywhere!" buttons={[ - { text: "Explore Our Sweets", href: "#products" }, + { text: "Explore Our Sweets", href: "/our-sweets" }, { text: "Contact Us", href: "#contact" } ]} buttonAnimation="opacity" @@ -87,24 +87,7 @@ export default function Page() { useInvertedBackground={true} /> -
- -
+
); -} +} \ No newline at end of file