Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86c6542d32 | |||
| 495b0757ab | |||
| e971a4b816 | |||
| b2f7693d7a | |||
| 12c9f5d4db | |||
| 19ebd50e8a | |||
| 3d40f02044 | |||
| 73da6814ec | |||
| 98fb33d2bb | |||
| afa9ebefa4 | |||
| 6ed51a6788 | |||
| d37480799f | |||
| 39dd880d91 | |||
| a69c305a84 | |||
| 11e19ebc74 | |||
| 846430c976 | |||
| 0f5d970fc8 | |||
| 243c0e4697 | |||
| 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,22 +7,27 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Roboto } from "next/font/google";
|
import { Roboto } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Lanza Cariccio Cono | Exquisiter Weinimport',
|
title: 'FAQ | Lanza Cariccio Cono Weinimport',
|
||||||
description: 'Entdecken Sie exklusive Weine aus den besten Anbaugebieten Europas bei Lanza Cariccio Cono.',
|
description: 'Antworten auf Ihre Fragen rund um Weine und unseren Service.',
|
||||||
openGraph: {
|
openGraph: {
|
||||||
"title": "Lanza Cariccio Cono | Exquisiter Weinimport",
|
"title": "Lanza Cariccio Cono | Exquisiter Weinimport",
|
||||||
"siteName": "Lanza Cariccio Cono"
|
"siteName": "Lanza Cariccio Cono"
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const roboto = Roboto({
|
|
||||||
variable: "--font-roboto",
|
const inter = Inter({
|
||||||
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const openSans = Open_Sans({
|
||||||
|
variable: "--font-open-sans",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["100", "300", "400", "500", "700", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -33,7 +38,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${roboto.variable} antialiased`}>
|
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -31,13 +31,14 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Über uns", id: "about" },
|
{ name: "Über uns", id: "/#about" },
|
||||||
{ name: "Sortiment", id: "products" },
|
{ name: "Sortiment", id: "/products" },
|
||||||
{ name: "Kontakt", id: "contact" },
|
{ name: "FAQ", id: "/faq" },
|
||||||
|
{ name: "Kontakt", id: "/#contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Lanza Cariccio Cono"
|
brandName="Lanza Cariccio Cono Weinimport"
|
||||||
button={{ text: "Bestellen", href: "#contact" }}
|
button={{ text: "Bestellen", href: "https://prontoitalia24.de/" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -45,9 +46,9 @@ export default function LandingPage() {
|
|||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{ variant: "rotated-rays-static" }}
|
background={{ variant: "rotated-rays-static" }}
|
||||||
title="Exquisite Weine für Genießer"
|
title="Exquisite Weine für Genießer"
|
||||||
description="Lanza Cariccio Cono bringt Ihnen die besten Tropfen direkt aus den sonnigsten Weinbergen Europas in Ihr Glas."
|
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="http://img.b2bpic.net/free-photo/hand-pouring-wine-carafe-side-view_23-2149746484.jpg"
|
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"
|
imageAlt="Luxuriöse Weinflasche im Sonnenuntergang"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
avatars={[
|
avatars={[
|
||||||
@@ -78,31 +79,12 @@ export default function LandingPage() {
|
|||||||
{ title: "Handverlesen", description: "Jede Flasche erfüllt unsere hohen Standards." },
|
{ title: "Handverlesen", description: "Jede Flasche erfüllt unsere hohen Standards." },
|
||||||
{ title: "Nachhaltigkeit", description: "Umweltschutz bei Anbau und Transport." },
|
{ title: "Nachhaltigkeit", description: "Umweltschutz bei Anbau und Transport." },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/wine-barrels-stacked-cellar-winery_158595-4102.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/closeup-shot-hand-holding-splashing-glass-wine_181624-57771.jpg?id=27736567"
|
||||||
imageAlt="Tuskanischer Weinberg"
|
imageAlt="Tuskanischer Weinberg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</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">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardTwentySeven
|
<FeatureCardTwentySeven
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -166,10 +148,10 @@ export default function LandingPage() {
|
|||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "Über uns", href: "#about" }, { label: "Sortiment", href: "#products" }] },
|
{ items: [{ label: "Über uns", href: "/#about" }, { label: "Sortiment", href: "/products" }] },
|
||||||
{ items: [{ label: "Kontakt", href: "#contact" }, { label: "Impressum", href: "#" }] },
|
{ items: [{ label: "Kontakt", href: "/#contact" }, { label: "Impressum", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
logoText="Lanza Cariccio Cono"
|
logoText="Lanza Cariccio Cono Weinimport"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-roboto), sans-serif;
|
font-family: var(--font-open-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-roboto), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #0c1325;
|
--secondary-cta-text: #0c1325;
|
||||||
--accent: #93c7ff;
|
--accent: #A7012A;
|
||||||
--background-accent: #A7012A;
|
--background-accent: #A7012A;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
|
|||||||
Reference in New Issue
Block a user