Update src/app/faq/page.tsx

This commit is contained in:
2026-05-10 19:27:45 +00:00
parent f1fc96634b
commit ecb7207c8e

View File

@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function FAQPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,36 +25,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About Us",
id: "/about",
},
{
name: "Services",
id: "/services",
},
{
name: "Track Order",
id: "/track",
},
{
name: "FAQ",
id: "/faq",
},
{
name: "Contact Us",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Track Order", id: "/track" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact Us", id: "/contact" }
]}
brandName="Cloud Shelf"
button={{
text: "Join Now",
href: "/join",
}}
button={{ text: "Join Now", href: "/join" }}
/>
</div>
@@ -63,13 +42,7 @@ export default function LandingPage() {
layout="page"
title="Frequently Asked Questions"
sections={[
{
heading: "General Information",
content: {
type: "paragraph",
text: "Cloud Shelf is the leading logistics provider.",
},
},
{ heading: "General Information", content: { text: "Cloud Shelf is the leading logistics provider." } }
]}
/>
</div>
@@ -81,15 +54,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Need More Help?"
description="Contact our support team anytime."
features={[
{
id: "f1",
title: "24/7 Support",
subtitle: "Always available",
category: "Support",
value: "Instant",
},
]}
features={[{ id: "f1", title: "24/7 Support", subtitle: "Always available", category: "Support", value: "Instant" }]}
/>
</div>
@@ -97,36 +62,12 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Cloud Shelf"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "FAQ",
href: "/faq",
},
],
},
{
title: "Support",
items: [
{
label: "Track Order",
href: "/track",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "FAQ", href: "/faq" }] },
{ title: "Support", items: [{ label: "Track Order", href: "/track" }, { label: "Contact", href: "/contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}