From 1215d3d509897e2467a84e1a3a25c998b9f4d509 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 01:34:15 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 49 ++++++++++++++++++++++++++++++++++-------------- 1 file changed, 35 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b7f7f6..bee4e24 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -19,14 +19,14 @@ export default function LandingPage() {
-
@@ -243,13 +248,29 @@ export default function LandingPage() { { title: "Contact", items: [ { - label: "Location", href: "#contact"}, + label: "Visit Us: 123 Main St, Chicago, IL", href: "#contact"}, + { + label: "Call Us: (312) 555-0199", href: "#contact"}, + { + label: "Email Us: info@taqueriachicago.com", href: "#contact"}, + { + label: "Make a Reservation", href: "#contact"}, { label: "Order Online", href: "#contact"}, { label: "Catering", href: "#faq"}, ], }, + { + title: "Hours", items: [ + { + label: "Mon - Sat: 11 AM - 9 PM", href: "#contact" + }, + { + label: "Sun: 12 PM - 8 PM", href: "#contact" + } + ] + } ]} copyrightText="© 2024 Taqueria Chicago. All rights reserved." /> @@ -257,4 +278,4 @@ export default function LandingPage() {
); -} \ No newline at end of file +} -- 2.49.1 From b46183a0ca051e0123e2cd53af5ab7a7baf954a9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 01:34:16 +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 c2b4e50..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-dm-sans), 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-manrope), sans-serif; + font-family: var(--font-libre-baskerville), serif; } -- 2.49.1 From 986cae4396f0d4b475d3c8dd50ddf71ac428cf90 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 01:34:16 +0000 Subject: [PATCH 3/3] 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 74f9083..e3f4bba 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #ffffff; - --card: #f9f9f9; - --foreground: #120a00e6; - --primary-cta: #FF7B05; + --background: hsl(0, 0%, 100%); + --card: hsl(0, 0%, 100%); + --foreground: hsl(222.2, 84%, 4.9%); + --primary-cta: hsl(214.5, 30.5%, 49.6%); --primary-cta-text: #f5f5f5; - --secondary-cta: #f9f9f9; + --secondary-cta: hsl(222.2, 47.4%, 11.2%); --secondary-cta-text: #1c1c1c; - --accent: #e2e2e2; - --background-accent: #FF7B05; + --accent: hsl(214.5, 30.5%, 49.6%); + --background-accent: hsl(210, 40%, 96.1%); /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1