Update src/app/faq/page.tsx

This commit is contained in:
2026-05-11 22:56:25 +00:00
parent 86ffee6791
commit ecd55e3e65

View File

@@ -22,116 +22,59 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="NYC License Pro"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="NYC License Pro"
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="faq-body" data-section="faq-body">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "How long does licensing take?",
content: "Timing varies based on the specific agency and application complexity.",
},
{
id: "2",
title: "Do you help with renewals?",
content: "Yes, we handle the entire renewal process for all your permits.",
},
{
id: "3",
title: "What industries do you support?",
content: "We support restaurants, retail, professional services, and more.",
},
]}
sideTitle="Common Questions"
faqsAnimation="slide-up"
/>
</div>
<div id="faq-body" data-section="faq-body">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How long does licensing take?", content: "Timing varies based on the specific agency and application complexity." },
{ id: "2", title: "Do you help with renewals?", content: "Yes, we handle the entire renewal process for all your permits." },
{ id: "3", title: "What industries do you support?", content: "We support restaurants, retail, professional services, and more." },
]}
sideTitle="Common Questions"
faqsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
title="Still have questions?"
description="Reach out to our experts."
faqs={[
{
id: "a1",
title: "Free Consult?",
content: "Yes, always free.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/successful-co-workers_1098-679.jpg"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={false}
title="Still have questions?"
description="Reach out to our experts."
faqs={[
{ id: "a1", title: "Free Consult?", content: "Yes, always free." },
]}
imageSrc="http://img.b2bpic.net/free-photo/successful-co-workers_1098-679.jpg"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg?_wi=5"
logoText="NYC License Pro"
columns={[
{
title: "Services",
items: [
{
label: "Business Licenses",
href: "/services",
},
{
label: "Permits",
href: "/services",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "/faq",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/interracial-team-discussing-project-office-hallway_74855-2956.jpg"
logoText="NYC License Pro"
columns={[
{ title: "Services", items: [{ label: "Business Licenses", href: "/services" }, { label: "Permits", href: "/services" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact Us", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);