From 137d60d876bbbf2460ec489dcf532bfb7795413c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 21:38:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 73 ++++++++++++++++++++++++++---------------------- 1 file changed, 39 insertions(+), 34 deletions(-) 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() {
-
-
); -} +} \ No newline at end of file -- 2.49.1 From 8838f0de9c7be4935ef81b78659f5018b4d6de92 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 21:38:37 +0000 Subject: [PATCH 2/2] 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 ee8d361..3254825 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffff; + --primary-cta: #ff0000; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #ffffff; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #ff4d4d; + --background-accent: #800000; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1