Files
d4fc1011-fd9a-4efe-bb9f-926…/src/app/menu/page.tsx
2026-04-07 13:09:46 +00:00

172 lines
4.7 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="noiseDiagonalGradient"
cardStyle="gradient-radial"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Start",
id: "/",
},
{
name: "Menü",
id: "/menu",
},
{
name: "Über uns",
id: "/about",
},
{
name: "Besuch",
id: "/contact",
},
]}
brandName="The Bakery"
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
products={[
{
id: "p1",
name: "Ziegenkäse & Thymian Quiche",
price: "7,50€",
imageSrc: "http://img.b2bpic.net/free-photo/italian-frittata-made-with-spinach-tomatoes-onion-peppers-white-wooden-table_123827-30360.jpg?_wi=3",
},
{
id: "p2",
name: "Lachs & Lauch Quiche",
price: "8,20€",
imageSrc: "http://img.b2bpic.net/free-photo/baked-spinach-lasagna_74190-524.jpg?_wi=2",
},
{
id: "p3",
name: "Gemüse der Saison",
price: "7,80€",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pastry-with-greens-cooked-along-with-fresh-greens-white-desk-food-meal-dinner-photo_140725-22927.jpg?_wi=2",
},
{
id: "p4",
name: "Butter-Croissant",
price: "2,50€",
imageSrc: "http://img.b2bpic.net/free-photo/croissant-baked_1150-11063.jpg?_wi=2",
},
{
id: "p5",
name: "Flat White",
price: "3,80€",
imageSrc: "http://img.b2bpic.net/free-photo/glass-foamy-latte-decorated-with-daffodil_141793-433.jpg",
},
{
id: "p6",
name: "Chai Latte",
price: "4,20€",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-latte-coffee-with-cinnamon_140725-11543.jpg",
},
]}
title="Unsere Spezialitäten"
description="Lass dich von unserer Auswahl verzaubern."
/>
</div>
<div id="product" data-section="product">
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Saisonale Highlights"
description="Entdecke unsere neuen Kreationen."
products={[
{
id: "sp1",
name: "Erdbeer-Tarte",
price: "5,90€",
variant: "Saisonal",
imageSrc: "http://img.b2bpic.net/free-photo/baked-spinach-lasagna_74190-524.jpg?_wi=3",
},
{
id: "sp2",
name: "Zitronen-Quiche",
price: "6,20€",
variant: "Limitiert",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pastry-with-greens-cooked-along-with-fresh-greens-white-desk-food-meal-dinner-photo_140725-22927.jpg?_wi=3",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Start",
href: "/",
},
{
label: "Menü",
href: "/menu",
},
],
},
{
items: [
{
label: "Über uns",
href: "/about",
},
{
label: "Kontakt",
href: "/contact",
},
],
},
{
items: [
{
label: "Datenschutz",
href: "#",
},
{
label: "Impressum",
href: "#",
},
],
},
]}
logoText="The Bakery"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}