From c56e259797e2212038b599fa0f8f9d1ac365a2f5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 10:30:05 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 249 ++++++++++++----------------------------------- 1 file changed, 60 insertions(+), 189 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c094d13..3abe796 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,212 +4,107 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import TextAbout from '@/components/sections/about/TextAbout'; -import { Award, CalendarCheck } from "lucide-react"; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import { Award, CalendarCheck, Utensils, Star, MapPin } from "lucide-react"; export default function LandingPage() { return (
-
-
-
@@ -218,32 +113,8 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/restaurant-elegant-set-dining-lunch_1203-5578.jpg?_wi=2" logoText="Manor House" columns={[ - { - title: "Information", - items: [ - { - label: "About", - href: "#about", - }, - { - label: "Menu", - href: "#menu", - }, - ], - }, - { - title: "Connect", - items: [ - { - label: "Instagram", - href: "#", - }, - { - label: "Facebook", - href: "#", - }, - ], - }, + { title: "Menu", items: [{ label: "Seasonal Specials", href: "#menu" }, { label: "Wine List", href: "#menu" }] }, + { title: "Contact", items: [{ label: "Reserve Now", href: "#contact" }, { label: "Location", href: "#" }] }, ]} /> -- 2.49.1 From 73ac44bba917057dd6d2ca8dde1af2e9f3cd128d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 10:30:06 +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 3de8151..fc17956 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f8f8f8; - --card: #ffffff; - --foreground: #222222; - --primary-cta: #000000; + --background: #fdfaf6; + --card: #f4efe9; + --foreground: #1a1614; + --primary-cta: #8c6b45; --primary-cta-text: #ffffff; - --secondary-cta: #ffffff; + --secondary-cta: #fdfaf6; --secondary-cta-text: #222222; - --accent: #e2e2e2; - --background-accent: #c4c4c4; + --accent: #d4b895; + --background-accent: #e6d5be; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1