Update src/app/page.tsx

This commit is contained in:
2026-06-10 01:34:15 +00:00
parent 3786fc0c1b
commit 1215d3d509

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; 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 FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
@@ -19,14 +19,14 @@ export default function LandingPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="pill" borderRadius="rounded"
contentWidth="mediumLarge" contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles" sizing="mediumLargeSizeMediumTitles"
background="floatingGradient" background="floatingGradient"
cardStyle="glass-elevated" cardStyle="soft-shadow"
primaryButtonStyle="double-inset" primaryButtonStyle="gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="extrabold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
@@ -201,16 +201,21 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "downward-rays-animated"}} variant: "downward-rays-animated"}}
tag="Visit Us" tag="Make a Reservation or Order Online"
title="Find Us or Order Online" title="Ready to Taste Taqueria Chicago?"
description="Located in the heart of Chicago, we're ready to serve you authentic Mexican cuisine. Use the form below for inquiries or find us on your favorite delivery app!" description="Whether you're planning a visit, picking up an order, or craving our authentic Mexican cuisine delivered to your door, we've got you covered. Reach out or place your order today!"
inputPlaceholder="Your email for inquiries" buttons={[
buttonText="Send Message" {
termsText="By sending a message, you agree to our privacy policy and terms of service." text: "Make a Reservation", href: "#contact"
},
{
text: "Order Online", href: "#contact"
}
]}
/> />
</div> </div>
@@ -243,13 +248,29 @@ export default function LandingPage() {
{ {
title: "Contact", items: [ 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: "Order Online", href: "#contact"},
{ {
label: "Catering", href: "#faq"}, 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." copyrightText="© 2024 Taqueria Chicago. All rights reserved."
/> />