Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
@@ -105,14 +105,14 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{ id: "f1", title: "What are your hours?", content: "Open daily from 10am to 10pm." },
|
||||
{ id: "f2", title: "How do I order online?", content: "Visit our website or order through our partner apps." },
|
||||
{ id: "f3", title: "Do you offer catering?", content: "Yes, we cater to all types of gatherings." }
|
||||
{ id: "f1", title: "What are your hours?", content: "Open daily from 10am to 10pm for all your cravings." },
|
||||
{ id: "f2", title: "Do you perform repairs on equipment?", content: "While we are a restaurant, our dedicated maintenance team ensures all kitchen equipment remains in top condition for food safety." },
|
||||
{ id: "f3", title: "Is there a warranty on orders?", content: "We guarantee fresh quality in every bucket, every time." }
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our restaurant."
|
||||
title="Restaurant FAQ"
|
||||
description="Everything you need to know about your local KFC."
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
@@ -120,21 +120,27 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
title="Visit Us"
|
||||
description="Located in Calamvale Central. Order online for quick pickup or delivery."
|
||||
tag="Find Us"
|
||||
title="Contact Support"
|
||||
description="Have questions about our service or feedback for the team? We're here to help."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||
{ name: "email", type: "email", placeholder: "Email Address" }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "How can we assist you today?" }}
|
||||
buttonText="Submit Message"
|
||||
onSubmit={(data) => console.log(data)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
<FooterLogoEmphasis
|
||||
logoText="KFC Calamvale"
|
||||
columns={[
|
||||
{ title: "Visit", items: [{ label: "Calamvale Central, QLD", href: "#" }] },
|
||||
{ title: "Order", items: [{ label: "Order Online", href: "#" }, { label: "Catering", href: "#" }] }
|
||||
{ items: [{ label: "Visit Us", href: "#contact" }, { label: "Careers", href: "#" }] },
|
||||
{ items: [{ label: "Menu", href: "#products" }, { label: "Catering", href: "#" }] },
|
||||
{ items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user