diff --git a/src/app/page.tsx b/src/app/page.tsx index ec9952b..b0431ed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; @@ -21,21 +21,13 @@ export default function LandingPage() { @@ -44,26 +36,19 @@ export default function LandingPage() {
@@ -90,26 +73,11 @@ export default function LandingPage() { useInvertedBackground={true} products={[ { - id: "p1", - name: "Hot Turkey Green Chile Melt", - price: "$12.95", - imageSrc: "http://img.b2bpic.net/free-photo/panini-sandwich-with-ham-cheese-tomato-arugula-isolated-white-background_123827-27058.jpg", - imageAlt: "Turkey green chile melt on bread", - }, + id: "p1", name: "Hot Turkey Green Chile Melt", price: "$12.95", imageSrc: "http://img.b2bpic.net/free-photo/panini-sandwich-with-ham-cheese-tomato-arugula-isolated-white-background_123827-27058.jpg", imageAlt: "Turkey green chile melt on bread"}, { - id: "p2", - name: "Veggie Baja Sandwich", - price: "$10.50", - imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-bread-cheese-tomato-cucumber-sausage-greens-flat-lay-wooden-table_176474-8298.jpg", - imageAlt: "Veggie Baja sandwich", - }, + id: "p2", name: "Veggie Baja Sandwich", price: "$10.50", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-bread-cheese-tomato-cucumber-sausage-greens-flat-lay-wooden-table_176474-8298.jpg", imageAlt: "Veggie Baja sandwich"}, { - id: "p3", - name: "Classic Cinnamon Roll", - price: "$4.50", - imageSrc: "http://img.b2bpic.net/free-photo/pieces-mixed-homemade-breads-presented-different-levels-wooden-table-as-samples-sale_346278-832.jpg", - imageAlt: "Fresh cinnamon roll", - }, + id: "p3", name: "Classic Cinnamon Roll", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/pieces-mixed-homemade-breads-presented-different-levels-wooden-table-as-samples-sale_346278-832.jpg", imageAlt: "Fresh cinnamon roll"}, ]} title="Handcrafted Favorites" description="Indulge in our signature sandwiches and freshly baked treats, made to satisfy your cravings." @@ -123,53 +91,46 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Sarah Johnson", - handle: "@sarahj", - testimonial: "The staff is always welcoming and the sandwiches are always fresh. Try the green chile cheese melt!", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-with-flour-hands_23-2148785718.jpg", - }, + id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "The staff is consistently so friendly, and you can really taste the quality of their high-grade flour and organic ingredients!"}, { - id: "2", - name: "Michael Chen", - handle: "@mchen", - testimonial: "Veggie Baja on Montana crunch bread is my new absolute favorite. Incredible bakery!", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-breads-as-black-seeded-black-vietnamese-baguette-black-cob-rye-bread-with-jam-knife-cutting-board-with-tea-butter-wooden-table_141793-11588.jpg", - }, + id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "Best local spot! The ingredients are clearly premium, and the staff is always there with a warm smile."}, { - id: "3", - name: "Emily Rodriguez", - handle: "@emilyrod", - testimonial: "Fresh bread and treats every single time. A truly wonderful local spot.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-unrecognizable-woman-cutting-loaf-bread_637285-2696.jpg", - }, - { - id: "4", - name: "David Kim", - handle: "@dkim", - testimonial: "Best sourdough in town. You can really taste the quality and the love in their baking.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273180.jpg", - }, + id: "3", name: "Emily Rodriguez", handle: "@emilyrod", testimonial: "I love coming here. The friendly staff and incredible fresh ingredients make every visit a joy."}, ]} - title="Community Love" - description="What our customers are saying about our fresh breads and warm staff." + title="Feedback from Our Neighbors" + description="We take pride in our friendly service and our commitment to sourcing only the highest quality ingredients for our community." /> ); -} +} \ No newline at end of file