Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 83dbc97ee4 | |||
| 86c6542d32 | |||
| 495b0757ab | |||
| e971a4b816 | |||
| b2f7693d7a | |||
| 12c9f5d4db | |||
| 19ebd50e8a | |||
| 3d40f02044 | |||
| 73da6814ec | |||
| 98fb33d2bb | |||
| afa9ebefa4 | |||
| 6ed51a6788 | |||
| d37480799f | |||
| a69c305a84 | |||
| 0f5d970fc8 | |||
| daf362449f | |||
| 3344cd181f | |||
| fd58f0f0d3 |
66
src/app/faq/page.tsx
Normal file
66
src/app/faq/page.tsx
Normal file
@@ -0,0 +1,66 @@
|
||||
"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: "https://prontoitalia24.de/" }}
|
||||
/>
|
||||
</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"
|
||||
useInvertedBackground={false}
|
||||
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>
|
||||
);
|
||||
}
|
||||
@@ -12,8 +12,8 @@ import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Lanza Cariccio Cono | Exquisiter Weinimport',
|
||||
description: 'Entdecken Sie exklusive Weine aus den besten Anbaugebieten Europas bei Lanza Cariccio Cono.',
|
||||
title: 'FAQ | Lanza Cariccio Cono Weinimport',
|
||||
description: 'Antworten auf Ihre Fragen rund um Weine und unseren Service.',
|
||||
openGraph: {
|
||||
"title": "Lanza Cariccio Cono | Exquisiter Weinimport",
|
||||
"siteName": "Lanza Cariccio Cono"
|
||||
|
||||
@@ -31,13 +31,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Über uns", id: "about" },
|
||||
{ name: "Sortiment", id: "products" },
|
||||
{ name: "Kontakt", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Über uns", id: "/#about" },
|
||||
{ name: "Sortiment", id: "/products" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="Lanza Cariccio Cono"
|
||||
button={{ text: "Bestellen", href: "#contact" }}
|
||||
brandName="Lanza Cariccio Cono Weinimport"
|
||||
button={{ text: "Bestellen", href: "https://prontoitalia24.de/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -46,7 +47,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="Exquisite Weine für Genießer"
|
||||
description="Lanza Cariccio Cono Weinimport bringt Ihnen die besten Tropfen direkt aus den sonnigsten Weinbergen Europas in Ihr Glas."
|
||||
buttons={[{ text: "Sortiment entdecken", href: "#products" }]}
|
||||
buttons={[{ text: "Sortiment entdecken", href: "/products" }]}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/red-wine-bottle-glass-with-copy-space_23-2148232191.jpg?id=5026903"
|
||||
imageAlt="Luxuriöse Weinflasche im Sonnenuntergang"
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -84,25 +85,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Tuscan Gold", price: "24,90 €", imageSrc: "http://img.b2bpic.net/free-photo/three-bottles-wine_23-2147764846.jpg" },
|
||||
{ id: "p2", name: "Vino Antico", price: "18,50 €", imageSrc: "http://img.b2bpic.net/free-photo/ripe-grapes-with-wine-basket-plaster-textile_176474-10822.jpg" },
|
||||
{ id: "p3", name: "Monte Sol", price: "29,00 €", imageSrc: "http://img.b2bpic.net/free-photo/flowers-bottle-glass-wine-grey-surface_114579-31702.jpg" },
|
||||
{ id: "p4", name: "Rosé Elegance", price: "15,90 €", imageSrc: "http://img.b2bpic.net/free-photo/champagne-bottle-grey-background_23-2147983880.jpg" },
|
||||
{ id: "p5", name: "Castello Rosso", price: "35,00 €", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-defocused-wine-shop_1203-9661.jpg" },
|
||||
{ id: "p6", name: "Vino Bianco", price: "21,00 €", imageSrc: "http://img.b2bpic.net/free-photo/man-with-medical-mask-shopping-supermarket_23-2149483165.jpg" },
|
||||
]}
|
||||
title="Unsere Auswahl"
|
||||
description="Entdecken Sie unsere handverlesene Auswahl an exquisiten Weinen."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentySeven
|
||||
animationType="slide-up"
|
||||
@@ -166,8 +148,8 @@ export default function LandingPage() {
|
||||
<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: "#" }] },
|
||||
{ items: [{ label: "Über uns", href: "/#about" }, { label: "Sortiment", href: "/products" }] },
|
||||
{ items: [{ label: "Kontakt", href: "/#contact" }, { label: "Impressum", href: "#" }] },
|
||||
]}
|
||||
logoText="Lanza Cariccio Cono Weinimport"
|
||||
/>
|
||||
@@ -175,4 +157,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
70
src/app/products/page.tsx
Normal file
70
src/app/products/page.tsx
Normal file
@@ -0,0 +1,70 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function ProductsPage() {
|
||||
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: "https://prontoitalia24.de/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Jetzt bestellen", href: "https://prontoitalia24.de/" }]}
|
||||
products={[
|
||||
{ id: "p1", name: "Tuscan Gold", price: "24,90 €", imageSrc: "http://img.b2bpic.net/free-photo/three-bottles-wine_23-2147764846.jpg" },
|
||||
{ id: "p2", name: "Vino Antico", price: "18,50 €", imageSrc: "http://img.b2bpic.net/free-photo/ripe-grapes-with-wine-basket-plaster-textile_176474-10822.jpg" },
|
||||
{ id: "p3", name: "Monte Sol", price: "29,00 €", imageSrc: "http://img.b2bpic.net/free-photo/flowers-bottle-glass-wine-grey-surface_114579-31702.jpg" },
|
||||
{ id: "p4", name: "Rosé Elegance", price: "15,90 €", imageSrc: "http://img.b2bpic.net/free-photo/champagne-bottle-grey-background_23-2147983880.jpg" },
|
||||
{ id: "p5", name: "Castello Rosso", price: "35,00 €", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-defocused-wine-shop_1203-9661.jpg" },
|
||||
{ id: "p6", name: "Vino Bianco", price: "21,00 €", imageSrc: "http://img.b2bpic.net/free-photo/man-with-medical-mask-shopping-supermarket_23-2149483165.jpg" },
|
||||
]}
|
||||
title="Unsere Produktauswahl"
|
||||
description="Entdecken Sie unser gesamtes Sortiment und bestellen Sie Ihre Lieblingsweine direkt online."
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user