Update src/app/faq/page.tsx

This commit is contained in:
2026-05-07 22:55:21 +00:00
parent 160c78581a
commit cd01e5e148

View File

@@ -21,19 +21,21 @@ export default function FaqPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Projects", id: "/#projects" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="FloorPro USA"
/>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/#services" },
{ name: "Projects", id: "/#projects" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="FloorPro USA"
/>
</div>
<div className="pt-32 pb-20">
<div id="faq" data-section="faq" className="pt-32 pb-20">
<FaqSplitMedia
textboxLayout="split"
title="Frequently Asked Questions"
@@ -46,16 +48,19 @@ export default function FaqPage() {
]}
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/man-working-carpentry-workshop_23-2148281313.jpg"
useInvertedBackground={false}
/>
</div>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/#services" }] },
{ items: [{ label: "About Us", href: "/#about" }, { label: "Contact", href: "/#contact" }] }
]}
logoText="FloorPro USA"
/>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/#services" }] },
{ items: [{ label: "About Us", href: "/#about" }, { label: "Contact", href: "/#contact" }] }
]}
logoText="FloorPro USA"
/>
</div>
</ReactLenis>
</ThemeProvider>
);