From be9e4e5e5dda96128daef71e8e56f55533a48206 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 08:03:19 +0000 Subject: [PATCH] Switch to version 1: modified src/app/page.tsx --- src/app/page.tsx | 243 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 210 insertions(+), 33 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0608c30..f377ab8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; @@ -25,16 +25,28 @@ export default function LandingPage() { cardStyle="glass-depth" primaryButtonStyle="gradient" secondaryButtonStyle="layered" - headingFontWeight="semibold" + headingFontWeight="normal" >
@@ -64,8 +122,48 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={true} products={[ - { id: "1", name: "Original Recipe Bucket", price: "$24.95", variant: "12 Pieces", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fried-chicken-with-ketchup_23-2148273041.jpg" }, - { id: "2", name: "Zinger Burger", price: "$8.95", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/chicken-burger-with-fried-apple-shape-potatoes_140725-4534.jpg" } + { + id: "1", + name: "Original Recipe Bucket", + price: "$24.95", + variant: "12 Pieces", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-fried-chicken-with-ketchup_23-2148273041.jpg", + }, + { + id: "2", + name: "Zinger Burger", + price: "$8.95", + variant: "Classic", + imageSrc: "http://img.b2bpic.net/free-photo/chicken-burger-with-fried-apple-shape-potatoes_140725-4534.jpg", + }, + { + id: "3", + name: "Coleslaw Side", + price: "$4.50", + variant: "Regular", + imageSrc: "http://img.b2bpic.net/free-photo/plate-grated-vegetables-with-lemon-marble-background_114579-67087.jpg", + }, + { + id: "4", + name: "Golden Fries", + price: "$3.95", + variant: "Large", + imageSrc: "http://img.b2bpic.net/free-photo/bunch-raw-pasta-wooden-bowl_114579-76283.jpg", + }, + { + id: "5", + name: "Vanilla Sundae", + price: "$4.00", + variant: "Sweet", + imageSrc: "http://img.b2bpic.net/free-photo/caramel-ring-milkshake-wooden-plate-marble-table_114579-24202.jpg", + }, + { + id: "6", + name: "Pepsi", + price: "$3.50", + variant: "Cold", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-glass-cold-drink-with-blueberries_181624-31189.jpg", + }, ]} title="Signature Menu" description="Freshly prepared every day using high-quality ingredients." @@ -77,7 +175,23 @@ export default function LandingPage() { useInvertedBackground={false} title="Serving Smiles Daily" tag="Our Impact" - metrics={[{ id: "m1", value: "100+", description: "Meals Served Daily" }, { id: "m2", value: "20", description: "Years of Tradition" }]} + metrics={[ + { + id: "m1", + value: "100+", + description: "Meals Served Daily", + }, + { + id: "m2", + value: "20", + description: "Years of Tradition", + }, + { + id: "m3", + value: "5k+", + description: "Happy Calamvale Locals", + }, + ]} metricsAnimation="slide-up" /> @@ -87,7 +201,48 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} - testimonials={[{ id: "t1", name: "John Doe", handle: "@johndoe", testimonial: "Best KFC in the region!", rating: 5 }]} + testimonials={[ + { + id: "t1", + name: "John Doe", + handle: "@johndoe", + testimonial: "Best KFC in the region, always fresh!", + rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-courier-red-uniform-holding-paper-food-package-showing-silence-sign-pink-background-service-job-delivery-uniform-company_140725-39108.jpg", + }, + { + id: "t2", + name: "Jane Smith", + handle: "@janesmith", + testimonial: "Love the crunch, consistently great.", + rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-courier-blue-uniform-holding-food-package-showing-silence-sign-pink-desk-job-worker-service-uniform-company_140725-36307.jpg", + }, + { + id: "t3", + name: "Mike Brown", + handle: "@mikeb", + testimonial: "Fast and friendly service every time.", + rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-female-with-broad-pleasant-smile-rests-sidewalk-cafe-alone-enjoys-good-rest-summer-vacation_273609-3491.jpg", + }, + { + id: "t4", + name: "Sarah Lee", + handle: "@sarahlee", + testimonial: "Great atmosphere for a family meal.", + rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-eating-pizza_23-2151231286.jpg", + }, + { + id: "t5", + name: "Tom Clark", + handle: "@tomc", + testimonial: "Always hit the spot with cravings.", + rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5062.jpg", + }, + ]} showRating={true} title="Calamvale Loves Our Chicken" description="What our guests have to say." @@ -98,47 +253,69 @@ export default function LandingPage() {
-
); -} \ No newline at end of file +}