diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..1611d19 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,65 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function FaqPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index c88bfb6..228b5fa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "Über uns", id: "about" }, { name: "Sortiment", id: "products" }, + { name: "FAQ", id: "/faq" }, { name: "Kontakt", id: "contact" }, ]} brandName="Lanza Cariccio Cono Weinimport" @@ -175,4 +176,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file