From 473a4fe03e69fb05236dbe787f5c665170d2ff37 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 22:41:48 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 59 ++++++++++++++++++++---------------------------- 1 file changed, 24 insertions(+), 35 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1588127..4f0a944 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 { Clock, ChefHat, MapPin, Award, Camera } from 'lucide-react'; +import { Clock, ChefHat, MapPin, Award, Camera, Star, Users, Briefcase } from 'lucide-react'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -11,7 +11,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { return ( @@ -25,7 +25,7 @@ export default function LandingPage() { cardStyle="glass-elevated" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" - headingFontWeight="light" + headingFontWeight="medium" > @@ -80,8 +77,6 @@ export default function LandingPage() { { id: "p2", brand: "Signature", name: "Pretzel Nuggets", price: "$6.00", rating: 5, reviewCount: "850", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=1s5d8h" }, { id: "p3", brand: "Signature", name: "Pretzel Dogs", price: "$5.00", rating: 4, reviewCount: "620", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lgjq79" }, { id: "p4", brand: "Signature", name: "Specialty Stuffed", price: "$7.00", rating: 5, reviewCount: "440", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tecnql" }, - { id: "p5", brand: "Signature", name: "Everything Bagel", price: "$4.50", rating: 5, reviewCount: "300", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lbf41b" }, - { id: "p6", brand: "Signature", name: "Cheesesteak Twist", price: "$8.00", rating: 5, reviewCount: "510", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=sza5ao" }, ]} title="Our Signature Pretzels" description="Baked fresh throughout the day. From the classic twist to our specialty stuffed creations." @@ -93,10 +88,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { title: "Fresh Batches", description: "Hot out of the oven every hour.", buttonIcon: Clock, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z0nmfo" }, - { title: "Handcrafted", description: "Real hands, real dough, real process.", buttonIcon: ChefHat, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yctdo6" }, - { title: "Philly Rooted", description: "Local tradition in every single bite.", buttonIcon: MapPin, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=b05hj3" }, - { title: "No Shortcuts", description: "No chains. No warming lamps. Authentic.", buttonIcon: Award, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=4a4nwc" }, + { title: "Fresh Batches", description: "Hot out of the oven every hour.", buttonIcon: Clock }, + { title: "Handcrafted", description: "Real hands, real dough, real process.", buttonIcon: ChefHat }, + { title: "Philly Rooted", description: "Local tradition in every single bite.", buttonIcon: MapPin }, + { title: "No Shortcuts", description: "No chains. No warming lamps. Authentic.", buttonIcon: Award }, ]} title="Most places reheat. We bake all day." description="We don't do mass-produced. We handcraft every single batch in the heart of the community." @@ -107,12 +102,12 @@ export default function LandingPage() {
-
@@ -198,4 +187,4 @@ export default function LandingPage() {
); -} \ No newline at end of file +} -- 2.49.1 From 313ea85af5a4419f87b82fb933ff3baf9a80840e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 22:41:49 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b18b015..b825d3a 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,10 +12,10 @@ --background: #ffffff; --card: #f9f9f9; - --foreground: #111111; + --foreground: #1c1c1c; --primary-cta: #C48A2C; --primary-cta-text: #111111; - --secondary-cta: #111111; + --secondary-cta: #1c1c1c; --secondary-cta-text: #ffffff; --accent: #A66A00; --background-accent: #F5E6C8; -- 2.49.1