From 773c66a1c96289599e36dcb23ceac469e93b1361 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 10:51:40 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 239 ++++++----------------------------------------- 1 file changed, 31 insertions(+), 208 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f377ab8..0608c30 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 FaqBase from '@/components/sections/faq/FaqBase'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; @@ -25,28 +25,16 @@ export default function LandingPage() { cardStyle="glass-depth" primaryButtonStyle="gradient" secondaryButtonStyle="layered" - headingFontWeight="normal" + headingFontWeight="semibold" >
@@ -122,48 +64,8 @@ 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: "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", - }, + { 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" } ]} title="Signature Menu" description="Freshly prepared every day using high-quality ingredients." @@ -175,23 +77,7 @@ 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", - }, - { - id: "m3", - value: "5k+", - description: "Happy Calamvale Locals", - }, - ]} + metrics={[{ id: "m1", value: "100+", description: "Meals Served Daily" }, { id: "m2", value: "20", description: "Years of Tradition" }]} metricsAnimation="slide-up" /> @@ -201,48 +87,7 @@ 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, 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", - }, - ]} + testimonials={[{ id: "t1", name: "John Doe", handle: "@johndoe", testimonial: "Best KFC in the region!", rating: 5 }]} showRating={true} title="Calamvale Loves Our Chicken" description="What our guests have to say." @@ -253,69 +98,47 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file From 7a36373dbd3d9cf48e7b0bb609155b5da4df9580 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 10:51:41 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 578efaa..aa7fd03 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-figtree), sans-serif; + font-family: var(--font-montserrat), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-figtree), sans-serif; + font-family: var(--font-montserrat), sans-serif; } From e8c8d6dfd1cea4021c01f1b19d4a7c511e2cab6e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 10:51:41 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd9ebfc..e01b5ef 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #120006e6; - --primary-cta: #e63946; + --background: #fbfbfb; + --card: #ffffff; + --foreground: #0a0a0a; + --primary-cta: #ce1126; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #f1f1f1; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #ce1126; + --background-accent: #f1f1f1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);