Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c534c4ffb1 | |||
| 8ccf234e0d | |||
| a8a7f6579d | |||
| f3734b5dcf | |||
| 4a990e538c |
@@ -3,10 +3,10 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
@@ -127,9 +127,7 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqDouble
|
<FaqBase
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "f1", title: "Do you deliver?", content: "No, we offer dine-in and takeout service only." },
|
{ id: "f1", title: "Do you deliver?", content: "No, we offer dine-in and takeout service only." },
|
||||||
{ id: "f2", title: "What are your hours?", content: "We close fairly early at 8 PM, so plan your dinner visit accordingly!" }
|
{ id: "f2", title: "What are your hours?", content: "We close fairly early at 8 PM, so plan your dinner visit accordingly!" }
|
||||||
@@ -137,31 +135,33 @@ export default function LandingPage() {
|
|||||||
title="Common Questions"
|
title="Common Questions"
|
||||||
description="Find everything you need to know about your next visit."
|
description="Find everything you need to know about your next visit."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
tag="Contact"
|
tag="Contact"
|
||||||
title="Visit Us Today!"
|
title="Visit Us Today!"
|
||||||
description="Swing by for the best pizza in Ogden. We're open until 8 PM."
|
description="Swing by for the best pizza in Ogden. We're open until 8 PM."
|
||||||
mediaAnimation="slide-up"
|
useInvertedBackground={false}
|
||||||
mediaPosition="right"
|
|
||||||
inputPlaceholder="Your email for updates"
|
|
||||||
buttonText="Get Notified"
|
buttonText="Get Notified"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBaseCard
|
||||||
logoText="Tony's Pizza Ogden"
|
logoText="Tony's Pizza Ogden"
|
||||||
leftLink={{ text: "Terms of Service", href: "#" }}
|
columns={[
|
||||||
rightLink={{ text: "Privacy Policy", href: "#" }}
|
{ title: "Menu", items: [{ label: "Pizzas", href: "#" }, { label: "Pasta", href: "#" }] },
|
||||||
|
{ title: "Legal", items: [{ label: "Terms", href: "#" }, { label: "Privacy", href: "#" }] }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user