Merge version_6 into main #8
65
src/app/faq/page.tsx
Normal file
65
src/app/faq/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Über uns", id: "/#about" },
|
||||
{ name: "Sortiment", id: "/#products" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="Lanza Cariccio Cono Weinimport"
|
||||
button={{ text: "Bestellen", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Häufig gestellte Fragen"
|
||||
description="Hier finden Sie Antworten auf die wichtigsten Fragen rund um unser Unternehmen und unsere Weine."
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
faqs={[
|
||||
{ id: "1", title: "Wo finden wir Sie?", content: "Unser Hauptsitz befindet sich zentral gelegen in der Weinmetropole. Besuchen Sie uns gerne in unseren Räumlichkeiten." },
|
||||
{ id: "2", title: "Was sind Ihre Geschäftszeiten?", content: "Wir sind montags bis freitags von 09:00 bis 18:00 Uhr für Sie da. Samstags erreichen Sie uns von 10:00 bis 14:00 Uhr." },
|
||||
{ id: "3", title: "Unternehmenshintergrund", content: "Lanza Cariccio Cono steht für Leidenschaft und Tradition. Seit über 20 Jahren importieren wir handverlesene Weine direkt von kleinen Winzern aus ganz Europa." },
|
||||
{ id: "4", title: "Können Privat- und Geschäftskunden kaufen?", content: "Ja, sowohl Privatpersonen als auch Gewerbekunden sind bei uns herzlich willkommen. Wir bieten maßgeschneiderte Lösungen für jeden Bedarf." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Über uns", href: "/#about" }, { label: "Sortiment", href: "/#products" }] },
|
||||
{ items: [{ label: "Kontakt", href: "/#contact" }, { label: "Impressum", href: "#" }] },
|
||||
]}
|
||||
logoText="Lanza Cariccio Cono Weinimport"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -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() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user