From 05d941819a683ab87194b5ee95e33434cac35307 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:41:45 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 64 +++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 58 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8e0f2e8..5081ca1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,11 +6,12 @@ import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Calendar, Camera, Heart, Leaf, MapPin, PartyPopper, Quote, Star, Utensils, Users } from 'lucide-react'; +import { Calendar, Heart, Leaf, MapPin, PartyPopper, Quote, Star, Utensils, Users, Image as ImageIcon, Phone, Mail, Clock } from 'lucide-react'; +import Link from 'next/link'; export default function LandingPage() { return ( @@ -32,9 +33,9 @@ export default function LandingPage() { navItems={[ { name: "Experience", id: "experience" }, { name: "Menu", id: "menu" }, - { name: "Why Us", id: "why-us" }, + { name: "Gallery", id: "gallery" }, + { name: "Location", id: "location" }, { name: "Testimonials", id: "testimonials" }, - { name: "Events", id: "events" }, { name: "Contact", id: "contact" } ]} button={{ text: "Reserve a Table", href: "contact" }} @@ -99,6 +100,53 @@ export default function LandingPage() { /> + + +
+ +
+
Date: Tue, 10 Mar 2026 16:41:46 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 2c47c7d..68b6a13 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000000; - --card: #1f4035; - --foreground: #ffffff; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #0F3D2E; --primary-cta: #D4AF37; --primary-cta-text: #ffffff; - --secondary-cta: #0d2b1f; + --secondary-cta: #f9f9f9; --secondary-cta-text: #0F3D2E; - --accent: #10b981; - --background-accent: #10b981; + --accent: #8FBF9F; + --background-accent: #0F3D2E; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1