5 Commits

Author SHA1 Message Date
c534c4ffb1 Update src/app/page.tsx 2026-04-21 22:19:47 +00:00
8ccf234e0d Update src/app/page.tsx 2026-04-21 22:19:19 +00:00
a8a7f6579d Merge version_2 into main
Merge version_2 into main
2026-04-21 22:15:33 +00:00
f3734b5dcf Merge version_2 into main
Merge version_2 into main
2026-04-21 22:15:09 +00:00
4a990e538c Merge version_2 into main
Merge version_2 into main
2026-04-21 22:14:40 +00:00

View File

@@ -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,28 +135,30 @@ 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>