diff --git a/src/app/page.tsx b/src/app/page.tsx index 5be551c..964739a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,12 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; export default function LandingPage() { @@ -55,7 +55,8 @@ export default function LandingPage() { useInvertedBackground={false} title="Crafted with Passion" description={[ - "Our journey began in a small kitchen, driven by a simple goal: to create the perfect pizza. We use a 48-hour fermentation process to ensure our crust is light, airy, and full of flavor.", "Every tomato, every ball of mozzarella, and every bunch of basil is chosen for its quality. We believe that great pizza is a labor of love, and we invite you to share that passion with us."]} + "Our journey began in a small kitchen, driven by a simple goal: to create the perfect pizza. We use a 48-hour fermentation process to ensure our crust is light, airy, and full of flavor.", "Every tomato, every ball of mozzarella, and every bunch of basil is chosen for its quality. We believe that great pizza is a labor of love, and we invite you to share that passion with us." + ]} /> @@ -68,13 +69,16 @@ export default function LandingPage() { products={[ { id: "1", brand: "Signature", name: "Margherita", price: "$16", rating: 5, - reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-concept_23-2148643433.jpg"}, + reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-concept_23-2148643433.jpg" + }, { id: "2", brand: "Specialty", name: "Truffle Mushroom", price: "$22", rating: 5, - reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7dvx5f"}, + reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=7dvx5f" + }, { id: "3", brand: "Spicy", name: "Diavola", price: "$19", rating: 4, - reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pepperoni-pizza-with-ingredients_23-2148765305.jpg"}, + reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pepperoni-pizza-with-ingredients_23-2148765305.jpg" + }, ]} title="Our Signature Pizzas" description="From classic Margheritas to bold, modern flavor combinations, our menu has something to satisfy every craving." @@ -82,63 +86,64 @@ export default function LandingPage() {