86 lines
3.3 KiB
TypeScript
86 lines
3.3 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="small"
|
|
sizing="largeSmall"
|
|
background="noise"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Menu", id: "/menu" },
|
|
{ name: "Über uns", id: "/about" },
|
|
{ name: "Kontakt", id: "/contact" },
|
|
]}
|
|
brandName="Konya Grill"
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu-grid" data-section="menu-grid">
|
|
<ProductCardOne
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="three-columns-all-equal-width"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{ id: "m1", name: "Döner Kebab", price: "6,50 €", imageSrc: "http://img.b2bpic.net/free-photo/plov-ustu-doner-table_140725-9249.jpg?_wi=2" },
|
|
{ id: "m2", name: "Dürüm", price: "7,00 €", imageSrc: "http://img.b2bpic.net/free-photo/beef-burrito-with-tomato-cucumber-lettuce-jalapeno-served-with-fries-sauces-vertical_141793-1862.jpg?_wi=2" },
|
|
{ id: "m3", name: "Pommes Mayonnaise", price: "3,50 €", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-potato-fries-with-white-dressing_23-2148501598.jpg" },
|
|
{ id: "m4", name: "Grillfleisch Teller", price: "9,50 €", imageSrc: "http://img.b2bpic.net/free-photo/caucasian-food-sac-ici-with-mixed-ingredients_114579-2459.jpg?_wi=1" },
|
|
]}
|
|
title="Unser Menü"
|
|
description="Entdecke unsere frisch gegrillten Spezialitäten."
|
|
/>
|
|
</div>
|
|
|
|
<div id="pricing" data-section="pricing">
|
|
<PricingCardThree
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Menü-Pakete"
|
|
description="Wähle das perfekte Menü für dich."
|
|
plans={[
|
|
{
|
|
id: "s1", price: "9,90 €", name: "Döner Menü", features: ["Döner", "Pommes", "Getränk"],
|
|
buttons: [{ text: "Wählen", href: "#" }],
|
|
},
|
|
{
|
|
id: "s2", price: "11,90 €", name: "Grill Menü", features: ["Grillteller", "Salat", "Brot"],
|
|
buttons: [{ text: "Wählen", href: "#" }],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[
|
|
{ items: [{ label: "Startseite", href: "/" }, { label: "Menü", href: "/menu" }] },
|
|
{ items: [{ label: "Impressum", href: "#" }, { label: "Datenschutz", href: "#" }] },
|
|
]}
|
|
logoText="Konya Grill"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |