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 +}