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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} 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 +} 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);