From b09c80e91c864feef877b990037619b023e28c66 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 16:42:13 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 137 ++++++++++++++--------------------------------- 1 file changed, 41 insertions(+), 96 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8597313..3106625 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,26 +19,21 @@ export default function LandingPage() { borderRadius="pill" contentWidth="medium" sizing="medium" - background="circleGradient" - cardStyle="glass-elevated" - primaryButtonStyle="gradient" - secondaryButtonStyle="glass" - headingFontWeight="normal" + background="noiseDiagonalGradient" + cardStyle="solid" + primaryButtonStyle="shadow" + secondaryButtonStyle="solid" + headingFontWeight="bold" > @@ -105,19 +86,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", name: "Casey JC", role: "Foodie", testimonial: "Fantastic spot for comfort food. The burgers and hot dogs were cooked perfectly and full of flavor.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-talking-while-eating-lunch-restaurant_637285-9017.jpg"}, - { - id: "2", name: "Gage Gottermeyer", role: "Regular", testimonial: "The best beef and lamb gyro I’ve had in years. Great service, clean restaurant, 10/10.", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-eating-chinese-food-night-out_23-2149143971.jpg"}, - { - id: "3", name: "Daria Walker", role: "Local Guide", testimonial: "A hidden gem! No-frills restaurant with fresh, delicious food, friendly service, and great prices.", imageSrc: "http://img.b2bpic.net/free-photo/young-sporty-man-wearing-headband-wristband-with-wrist-wrapped-with-bandage-holding-looking-winner-cup-isolated-pink-wall-with-copy-space_141793-87574.jpg"}, - { - id: "4", name: "Erik H", role: "Local Guide", testimonial: "Excellent Gyro with a crispy outside of the pita. The Gyro with Feta cheese is delicious and huge!", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg"}, - { - id: "5", name: "Lars Hamer", role: "Regular", testimonial: "My go-to spot for Gyros. Great group of guys, very friendly and service-oriented.", imageSrc: "http://img.b2bpic.net/free-photo/woman-proposing-hot-dog_23-2147816831.jpg"}, + { id: "1", name: "Casey JC", role: "Local Patriot", testimonial: "Best hot dog I've had since 2010. Truly an American classic spot!", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-couple-talking-while-eating-lunch-restaurant_637285-9017.jpg" }, + { id: "2", name: "Gage G", role: "Regular", testimonial: "The gyro is fantastic. Jerry's brings that classic taste back every single time.", imageSrc: "http://img.b2bpic.net/free-photo/blonde-woman-eating-chinese-food-night-out_23-2149143971.jpg" } ]} - title="What Our Neighbors Say" - description="Rated 4.6 stars by over 380 happy customers. See what the community thinks of our food and service." + title="What Our Loyal Customers Say" + description="Join the hundreds of satisfied neighbors who call Jerry's their go-to for comfort food." /> @@ -126,17 +99,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "q1", title: "Do you offer takeout?", content: "Yes, we have quick and convenient takeout options. You can order in person or call ahead."}, - { - id: "q2", title: "Is your food fresh?", content: "Absolutely. We pride ourselves on using fresh ingredients for our burgers, hot dogs, and Greek specialties."}, - { - id: "q3", title: "Do you cater?", content: "We love helping with events! Please contact us directly to discuss catering options for your group."}, - { - id: "q4", title: "What are your popular dishes?", content: "Our regulars love the Chili Cheese Dogs, the Beef & Lamb Gyro, and our Loaded Cheese Fries."}, + { id: "q1", title: "Do you offer takeout?", content: "Yes, stop by for a quick, classic American meal on the go!" }, + { id: "q2", title: "Since when have you been open?", content: "Since 2010, we've been serving the community with pride." } ]} - title="Questions? We've Got Answers" - description="Everything you need to know about Jerry's Hot Dogs." + title="Frequently Asked Questions" + description="Got questions? We've got the answers about our history and menu." faqsAnimation="slide-up" /> @@ -144,19 +111,13 @@ export default function LandingPage() {
@@ -166,26 +127,10 @@ export default function LandingPage() {
-- 2.49.1 From c2a8d2c75e1dd1b3e0dcccdd69e3d9c6f088d62a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 16:42:14 +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 fd9ebfc..7265c29 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: #fdfbf7; + --card: #ffffff; + --foreground: #1e293b; + --primary-cta: #b91c1c; --primary-cta-text: #ffffff; - --secondary-cta: #f9f9f9; + --secondary-cta: #1e3a8a; --secondary-cta-text: #120006e6; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #e1e5f2; + --background-accent: #f8fafc; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1