From 593c3f1f2f2a95b1c1da2cbbbdb104e899dc6f94 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:46:47 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d05385a..34e6561 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Coffee, Crown, Zap, Heart, MapPin, Sparkles, Utensils, Star } from 'lucide-react'; +import { Coffee, Crown, Zap, Heart, MapPin, Sparkles, Utensils, Star, Phone, Clock, MapPinIcon } from 'lucide-react'; export default function LandingPage() { return ( @@ -32,6 +32,7 @@ export default function LandingPage() { { name: "Menu", id: "menu" }, { name: "About", id: "about" }, { name: "Reviews", id: "reviews" }, + { name: "Location", id: "location" }, { name: "Contact", id: "contact" }, { name: "Order Online", id: "https://tinyurl.com" } ]} @@ -52,7 +53,7 @@ export default function LandingPage() { mediaAnimation="opacity" buttons={[ { text: "Order Online", href: "https://tinyurl.com" }, - { text: "Get Directions", href: "#contact" } + { text: "Get Directions", href: "#location" } ]} buttonAnimation="slide-up" /> @@ -163,12 +164,27 @@ export default function LandingPage() { /> +
+ +
+
Date: Wed, 11 Mar 2026 04:46:47 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index b9e5214..efe6053 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-nunito), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito), sans-serif; + font-family: var(--font-libre-baskerville), serif; } -- 2.49.1 From a75d179e0ef6080bcd4d56f7de51461a8b1479ba Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:46:47 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..0f4858b 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; - --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; - --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --background: #f3ede2; + --card: #efe7dd; + --foreground: #2e2521; + --primary-cta: #d4a574; + --primary-cta-text: #2e2521; + --secondary-cta: #f3ede2; + --secondary-cta-text: #2e2521; + --accent: #c9a876; + --background-accent: #b2a28b; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1