diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index 1bc9924..d0d84eb 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -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/" }} /> @@ -54,7 +54,7 @@ export default function FaqPage() { @@ -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() { /> -
- -
-
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..bd80ba8 --- /dev/null +++ b/src/app/products/page.tsx @@ -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 ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file