From ac5fae5f872f00ac9bc293df9a12ea02ec38467d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:34:21 +0000 Subject: [PATCH 1/3] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 245 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 245 insertions(+) create mode 100644 src/app/menu/page.tsx diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..4bc24c1 --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,245 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Facebook, Instagram, MapPin, Phone, Clock } from 'lucide-react'; + +export default function MenuPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 03835c1b4b6802c4b4aafc6ec93594f6d39b4819 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:34:21 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 417d33e..d66e82d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,7 +30,7 @@ export default function LandingPage() { brandName="The Village Cafe" navItems={[ { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, + { name: "Menu", id: "/menu" }, { name: "About", id: "about" }, { name: "Visit Us", id: "location" } ]} @@ -46,7 +46,7 @@ export default function LandingPage() { description="Fresh Southern comfort food, friendly smiles, and fast service — every single day." background={{ variant: "plain" }} buttons={[ - { text: "View Menu", href: "#menu" }, + { text: "View Menu", href: "/menu" }, { text: "Visit Us Today", href: "#location" } ]} testimonials={[ @@ -111,6 +111,9 @@ export default function LandingPage() { title: "Homemade Desserts", description: "Warm Cinnamon Rolls fresh from our kitchen, fudgy Brownies, and seasonal treats. The perfect sweet ending to your meal.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cinnamon-rolls-arrangement_23-2148904704.jpg", imageAlt: "Freshly baked cinnamon rolls with frosting" } ]} + buttons={[ + { text: "View Full Menu", href: "/menu" } + ]} /> @@ -185,4 +188,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 659418ba54b672ff1b50a74c46f664d926be2a99 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:34:21 +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 d60c0a4..04b27db 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #e3deea; - --card: #ffffff; - --foreground: #1f2027; - --primary-cta: #1f2027; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #2b180a; --primary-cta-text: #e3deea; - --secondary-cta: #ffffff; + --secondary-cta: #efe7dd; --secondary-cta-text: #1f2027; - --accent: #627dc6; - --background-accent: #627dc6; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1