From 96d07bae86afe703b25f26e6140193865592fdc3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 18:38:04 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cd91821..987cd8a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,20 +12,20 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Camera, Coffee, Heart, Smile, Users, Wifi } from "lucide-react"; +import { Camera, Coffee, Heart, Smile, Users, Wifi, MapPin, Phone, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -54,7 +54,7 @@ export default function LandingPage() {
@@ -166,6 +166,7 @@ export default function LandingPage() { logoText="Love Over Coffee" columns={[ { title: "Explore", items: [{ label: "Menu", href: "#menu" }, { label: "About Us", href: "#about" }] }, + { title: "Reach Us", items: [{ label: "123, Vaishali, Jaipur", href: "#" }, { label: "+91 98765 43210", href: "tel:+919876543210" }, { label: "hello@loc.com", href: "mailto:hello@loc.com" }] }, { title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }] } ]} /> -- 2.49.1 From bd842ef596c3ba0779100f13c002c47c11d09dd2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 18:38:05 +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 b7afc67..bf6a41d 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; + --background: #fbf9f6; + --card: #ffffff; + --foreground: #1a1a1a; + --primary-cta: #c6a664; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #f1eee9; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #c6a664; + --background-accent: #f1eee9; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1