diff --git a/src/app/page.tsx b/src/app/page.tsx index 6af65d4..6ddc882 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import TextAbout from '@/components/sections/about/TextAbout'; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FaqBase from '@/components/sections/faq/FaqBase'; export default function LandingPage() { return ( @@ -31,6 +32,7 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "About", id: "about" }, { name: "Artists", id: "features" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, { name: "Support", id: "support" }, ]} @@ -75,6 +77,21 @@ export default function LandingPage() { /> +