Merge version_7 into main #10
@@ -26,12 +26,12 @@ export default function FaqPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Über uns", id: "/#about" },
|
||||
{ name: "Sortiment", id: "/#products" },
|
||||
{ name: "Sortiment", id: "/products" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="Lanza Cariccio Cono Weinimport"
|
||||
button={{ text: "Bestellen", href: "/#contact" }}
|
||||
button={{ text: "Bestellen", href: "https://prontoitalia24.de/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function FaqPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
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: "#" }] },
|
||||
]}
|
||||
logoText="Lanza Cariccio Cono Weinimport"
|
||||
|
||||
@@ -31,14 +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: "Home", id: "/" },
|
||||
{ name: "Über uns", id: "/#about" },
|
||||
{ name: "Sortiment", id: "/products" },
|
||||
{ name: "FAQ", id: "/faq" },
|
||||
{ name: "Kontakt", id: "contact" },
|
||||
{ name: "Kontakt", id: "/#contact" },
|
||||
]}
|
||||
brandName="Lanza Cariccio Cono Weinimport"
|
||||
button={{ text: "Bestellen", href: "#contact" }}
|
||||
button={{ text: "Bestellen", href: "https://prontoitalia24.de/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -47,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"
|
||||
@@ -85,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"
|
||||
@@ -167,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"
|
||||
/>
|
||||
|
||||
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