From bb8ed5de5be7cf4dd96bcfcb09ec1d9af54f7240 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 18:30:52 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 140 ++++++++++++++--------------------------------- 1 file changed, 41 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4e35317..75c57bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,16 +31,11 @@ export default function LandingPage() { @@ -174,12 +125,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "1", title: "Do you offer vegan options?", content: "Yes, we have a selection of vegan gelato and sorbet options."}, - { - id: "2", title: "Do you offer catering?", content: "Absolutely! Contact us to schedule catering for your next event."}, - { - id: "3", title: "Is the shop family-friendly?", content: "We love families! We have a cozy atmosphere and treats for all ages."}, + { id: "1", title: "Do you offer vegan options?", content: "Yes, we have a selection of vegan gelato and sorbet options." }, + { id: "2", title: "Do you offer catering?", content: "Absolutely! Contact us to schedule catering for your next event." }, + { id: "3", title: "Is the shop family-friendly?", content: "We love families! We have a cozy atmosphere and treats for all ages." }, ]} title="Common Questions" faqsAnimation="slide-up" @@ -190,14 +138,11 @@ export default function LandingPage() {
@@ -207,18 +152,15 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "About", href: "#about"}, - { - label: "Menu", href: "#menu"}, + { label: "About", href: "#about" }, + { label: "Menu", href: "#menu" }, + { label: "Reviews", href: "#reviews" }, ], }, { items: [ - { - label: "Contact", href: "#contact"}, - { - label: "Privacy Policy", href: "#"}, + { label: "Visit Us", href: "#contact" }, + { label: "Privacy Policy", href: "#" }, ], }, ]} -- 2.49.1 From a79f8c0d4489763c8546ade597fe01b231d07dfd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 18:30:52 +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..cf17542 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: #fbf2f8; + --card: #fef8f0; + --foreground: #3e2723; + --primary-cta: #ffb7c5; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #fdf3e7; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #ffd700; + --background-accent: #f9dada; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1