Update src/app/faq/page.tsx

This commit is contained in:
2026-01-22 20:38:02 +00:00
parent 4ea97cace2
commit a85e02174f

View File

@@ -7,7 +7,6 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Star, Mail } from "lucide-react";
import Link from "next/link";
export default function FaqPage() {
return (
@@ -30,18 +29,13 @@ export default function FaqPage() {
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "FAQ", id: "/faq" }
]}
button={{
text: "Shop Now", href: "/products"
}}
/>
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div>
<div id="faq" data-section="faq">
@@ -113,4 +107,4 @@ export default function FaqPage() {
<FooterLogoReveal logoText="LuxeGlow" />
</ThemeProvider>
);
}
}