Update src/app/faq/page.tsx
This commit is contained in:
@@ -7,6 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
|||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { Star, Mail } from "lucide-react";
|
import { Star, Mail } from "lucide-react";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
export default function FaqPage() {
|
export default function FaqPage() {
|
||||||
return (
|
return (
|
||||||
@@ -28,13 +29,19 @@ export default function FaqPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Products", id: "/products" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "Pricing", id: "/pricing" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "FAQ", id: "/faq" }
|
{ name: "FAQ", id: "/faq" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Shop Now", href: "/products"
|
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>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
@@ -106,4 +113,4 @@ export default function FaqPage() {
|
|||||||
<FooterLogoReveal logoText="LuxeGlow" />
|
<FooterLogoReveal logoText="LuxeGlow" />
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user