Update src/app/faq/page.tsx

This commit is contained in:
2026-01-15 10:47:50 +00:00
parent 91cbadc529
commit ca31e88525

View File

@@ -19,7 +19,6 @@ export default function FaqPage() {
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
showBlurBottom={false}
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
@@ -66,40 +65,42 @@ export default function FaqPage() {
/>
</div>
<FooterBaseCard
logoText="Kvitka Moya"
columns={[
{
title: "Shop", items: [
{ label: "Arrangements", href: "/products" },
{ label: "Seasonal Flowers", href: "/products" },
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Delivery Info", href: "/about" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/faq" },
{ label: "Contact", href: "/contact" },
{ label: "Track Order", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Newsletter", href: "/contact" }
]
}
]}
copyrightText="© 2025 Kvitka Moya. All rights reserved."
/>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Kvitka Moya"
columns={[
{
title: "Shop", items: [
{ label: "Arrangements", href: "/products" },
{ label: "Seasonal Flowers", href: "/products" },
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Delivery Info", href: "/about" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/faq" },
{ label: "Contact", href: "/contact" },
{ label: "Track Order", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Newsletter", href: "/contact" }
]
}
]}
copyrightText="© 2025 Kvitka Moya. All rights reserved."
/>
</div>
</ThemeProvider>
);
}