From e971a4b81644c0204762947f2cd7a501b5373c85 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 17:33:04 +0000 Subject: [PATCH 1/3] Update src/app/faq/page.tsx --- src/app/faq/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() { -
- -
-
-- 2.49.1 From 86c6542d32d150cfe2aecd8ce6c745d7f9660778 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 17:33:05 +0000 Subject: [PATCH 3/3] Add src/app/products/page.tsx --- src/app/products/page.tsx | 70 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/app/products/page.tsx 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 -- 2.49.1