Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-05-24 20:41:20 +00:00
3 changed files with 329 additions and 148 deletions

View File

@@ -0,0 +1,76 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import LegalSection from '@/components/legal/LegalSection';
export default function DatenschutzPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="medium"
background="grid"
cardStyle="outline"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Start", id: "/" },
{ name: "Über uns", id: "/#about" },
{ name: "Menü", id: "/#menu" },
{ name: "Kontakt", id: "/#contact" },
{ name: "Datenschutz", id: "/datenschutz" }
]}
brandName="Limette"
button={{ text: "Reservieren", href: "/#contact" }}
/>
</div>
<div style={{ paddingTop: "100px", paddingBottom: "100px" }}>
<LegalSection
layout="page"
title="Datenschutzerklärung"
sections={[
{
heading: "1. Einleitung", content: { type: "paragraph", text: "Wir nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Nachfolgend informieren wir Sie über die Erhebung, Verarbeitung und Nutzung Ihrer Daten beim Besuch unserer Webseite." }
},
{
heading: "2. Datenerhebung", content: { type: "list", items: ["Automatisch erhobene Daten (IP-Adresse, Browser, Datum)", "Von Ihnen bereitgestellte Daten bei Anfragen"] }
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Kontakt", items: [
{ label: "Aachener Str. 532, Frechen", href: "#" },
{ label: "02234 2779492", href: "tel:022342779492" }
]
},
{
title: "Öffnungszeiten", items: [
{ label: "Mo: 12:00 - 22:00", href: "#" },
{ label: "So: Ruhetag", href: "#" }
]
}
]}
bottomLeftText="© 2024 Limette Restaurant"
bottomRightText="Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,81 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ImpressumPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="medium"
background="grid"
cardStyle="outline"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Start", id: "/" },
{ name: "Über uns", id: "/#about" },
{ name: "Menü", id: "/#menu" },
{ name: "Kontakt", id: "/#contact" },
]}
brandName="Limette"
button={{ text: "Reservieren", href: "/#contact" }}
/>
</div>
<LegalSection
layout="page"
title="Impressum"
sections={[
{
heading: "Angaben gemäß § 5 TMG", content: {
type: "paragraph",
text: "Limette Restaurant, Aachener Str. 532, 50226 Frechen. Kontakt: 02234 2779492."
}
},
{
heading: "Öffnungszeiten", content: {
type: "list",
items: [
"Montag: 12:00 - 22:00", "Sonntag: Ruhetag"
]
}
}
]}
/>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Kontakt", items: [
{ label: "Aachener Str. 532, Frechen", href: "/" },
{ label: "02234 2779492", href: "tel:022342779492" }
]
},
{
title: "Öffnungszeiten", items: [
{ label: "Mo: 12:00 - 22:00", href: "/" },
{ label: "So: Ruhetag", href: "/" }
]
}
]}
bottomLeftText="© 2024 Limette Restaurant"
bottomRightText="Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -12,8 +12,23 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Heart, Pizza, Star } from "lucide-react";
import { useState, useEffect } from "react";
export default function LandingPage() {
const [showCookieBanner, setShowCookieBanner] = useState(false);
useEffect(() => {
const hasAccepted = localStorage.getItem('cookie-consent');
if (!hasAccepted) {
setShowCookieBanner(true);
}
}, []);
const acceptCookies = () => {
localStorage.setItem('cookie-consent', 'accepted');
setShowCookieBanner(false);
};
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -28,162 +43,171 @@ export default function LandingPage() {
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Start", id: "hero" },
{ name: "Über uns", id: "about" },
{ name: "Menü", id: "menu" },
{ name: "Kontakt", id: "contact" },
]}
brandName="Limette"
button={{
text: "Reservieren", href: "#contact"}}
/>
</div>
{showCookieBanner && (
<div style={{ position: 'fixed', bottom: 0, left: 0, right: 0, zIndex: 1000, padding: '1rem', background: '#ffffff', borderTop: '1px solid #e5e7eb', textAlign: 'center' }}>
<p style={{ marginBottom: '10px' }}>Wir verwenden Cookies, um Ihnen die beste Nutzererfahrung zu bieten. Indem Sie weiter auf unserer Seite surfen, stimmen Sie der Verwendung von Cookies zu.</p>
<button onClick={acceptCookies} style={{ padding: '8px 16px', background: '#000000', color: '#ffffff', borderRadius: '4px', cursor: 'pointer' }}>
Akzeptieren
</button>
</div>
)}
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
background={{
variant: "gradient-bars"}}
title="Limette Italienische Seele in Frechen"
description="Erleben Sie authentische italienische Küche in einem Ambiente, das sich wie zu Hause anfühlt. Tradition, Herzlichkeit und Genuss."
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698360.jpg", imageAlt: "traditional italian restaurant outdoor patio" },
{ imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-vintage-wooden-chair-surrounded-by-baskets-with-flowers_181624-26804.jpg", imageAlt: "cozy italian restaurant interior dining" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134249.jpg", imageAlt: "fresh italian pizza oven baked" },
{ imageSrc: "http://img.b2bpic.net/free-photo/farfalle-slices-tomato-black-pan-with-oil_114579-76544.jpg", imageAlt: "fresh handmade pasta dish" },
{ imageSrc: "http://img.b2bpic.net/free-photo/glass-red-wine-with-wooden-background_23-2148243145.jpg", imageAlt: "italian wine glass on table" }
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/plate-with-fish-herbs_140725-1907.jpg", imageAlt: "italian wine glass on table" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg", imageAlt: "fresh italian pizza oven baked" },
{ imageSrc: "http://img.b2bpic.net/free-photo/vintage-lamps-cafe_23-2147785789.jpg", imageAlt: "cozy italian restaurant interior dining" },
{ imageSrc: "http://img.b2bpic.net/free-photo/wooden-window-with-flowerpot-with-plants_1203-2102.jpg", imageAlt: "traditional italian restaurant outdoor patio" },
{ imageSrc: "http://img.b2bpic.net/free-photo/happy-waitress-serving-coffee-couple-who-is-eating-cake-cafe_637285-9100.jpg", imageAlt: "smiling waiter holding menu" }
]}
buttons={[{ text: "Tisch reservieren", href: "#contact" }]}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149290144.jpg", alt: "Friends having fun together" },
{ src: "http://img.b2bpic.net/free-photo/photo-trendy-young-woman-with-dark-hair-cool-bandana-accessories-fashionable-black-blouse-sitting-looking-away-balcony_197531-28123.jpg", alt: "Trendy young woman on balcony" },
{ src: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg", alt: "Couple having fun at night" },
{ src: "http://img.b2bpic.net/free-photo/french-restaurant-scene-paris-france-sidewalk-cafe_1101-2310.jpg", alt: "French restaurant scene" },
{ src: "http://img.b2bpic.net/free-photo/charming-balcony-scene-with-roses-outdoor-dining_23-2151986094.jpg", alt: "Charming balcony scene" }
]}
marqueeItems={[
{ type: "image", src: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg", alt: "Luxury dining room" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/colorful-mexican-urban-architecture-landscape_23-2149749946.jpg", alt: "Colorful landscape" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/cafe-sibiu-romania_1268-20583.jpg", alt: "Cafe in Sibiu" },
{ type: "text", text: "Traditionell" },
{ type: "text", text: "Hausgemacht" }
]}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Start", id: "hero" },
{ name: "Über uns", id: "about" },
{ name: "Menü", id: "menu" },
{ name: "Kontakt", id: "contact" },
]}
brandName="Limette"
button={{
text: "Reservieren", href: "#contact"}}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={true}
title="Unsere Geschichte"
description={[
"Das Limette ist mehr als nur ein Restaurant. Es ist ein Ort der Begegnung, an dem italienische Tradition auf rheinische Gastfreundschaft trifft.", "Seit vielen Jahren bewirten wir unsere Gäste mit Leidenschaft, frischen Zutaten und einer Prise italienischem Lebensgefühl."]}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
background={{
variant: "gradient-bars"}}
title="Limette Italienische Seele in Frechen"
description="Erleben Sie authentische italienische Küche in einem Ambiente, das sich wie zu Hause anfühlt. Tradition, Herzlichkeit und Genuss."
leftCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/rustic-patio-with-deck-furniture-vegetation_23-2150698360.jpg", imageAlt: "traditional italian restaurant outdoor patio" },
{ imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-vintage-wooden-chair-surrounded-by-baskets-with-flowers_181624-26804.jpg", imageAlt: "cozy italian restaurant interior dining" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134249.jpg", imageAlt: "fresh italian pizza oven baked" },
{ imageSrc: "http://img.b2bpic.net/free-photo/farfalle-slices-tomato-black-pan-with-oil_114579-76544.jpg", imageAlt: "fresh handmade pasta dish" },
{ imageSrc: "http://img.b2bpic.net/free-photo/glass-red-wine-with-wooden-background_23-2148243145.jpg", imageAlt: "italian wine glass on table" }
]}
rightCarouselItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/plate-with-fish-herbs_140725-1907.jpg", imageAlt: "italian wine glass on table" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg", imageAlt: "fresh italian pizza oven baked" },
{ imageSrc: "http://img.b2bpic.net/free-photo/vintage-lamps-cafe_23-2147785789.jpg", imageAlt: "cozy italian restaurant interior dining" },
{ imageSrc: "http://img.b2bpic.net/free-photo/wooden-window-with-flowerpot-with-plants_1203-2102.jpg", imageAlt: "traditional italian restaurant outdoor patio" },
{ imageSrc: "http://img.b2bpic.net/free-photo/happy-waitress-serving-coffee-couple-who-is-eating-cake-cafe_637285-9100.jpg", imageAlt: "smiling waiter holding menu" }
]}
buttons={[{ text: "Tisch reservieren", href: "#contact" }]}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149290144.jpg", alt: "Friends having fun together" },
{ src: "http://img.b2bpic.net/free-photo/photo-trendy-young-woman-with-dark-hair-cool-bandana-accessories-fashionable-black-blouse-sitting-looking-away-balcony_197531-28123.jpg", alt: "Trendy young woman on balcony" },
{ src: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg", alt: "Couple having fun at night" },
{ src: "http://img.b2bpic.net/free-photo/french-restaurant-scene-paris-france-sidewalk-cafe_1101-2310.jpg", alt: "French restaurant scene" },
{ src: "http://img.b2bpic.net/free-photo/charming-balcony-scene-with-roses-outdoor-dining_23-2151986094.jpg", alt: "Charming balcony scene" }
]}
marqueeItems={[
{ type: "image", src: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg", alt: "Luxury dining room" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/colorful-mexican-urban-architecture-landscape_23-2149749946.jpg", alt: "Colorful landscape" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/cafe-sibiu-romania_1268-20583.jpg", alt: "Cafe in Sibiu" },
{ type: "text", text: "Traditionell" },
{ type: "text", text: "Hausgemacht" }
]}
/>
</div>
<div id="menu" data-section="menu">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
features={[
{ title: "Pizza Classica", description: "Traditionell belegt, im Steinofen gebacken.", imageSrc: "http://img.b2bpic.net/free-photo/baking-pizza-wood-fired-oven_52683-106695.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/delicious-vegan-pizza-social-post_23-2151895448.jpg", buttonText: "Ansehen" },
{ title: "Handgemachte Pasta", description: "Frisch nach Familienrezept zubereitet.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-blue-plate-with-delicious-pasta-meal-served-with-tomato-meat-tan-color-towel-dinner-different-spices_140725-143902.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/top-view-shaped-italian-pasta-flower-form-raw-yellow-grey-desk-italian-raw-meal-spaghetti_140725-23117.jpg", buttonText: "Ansehen" },
{ title: "Feine Weine", description: "Eine kuratierte Auswahl an italienischen Weinen.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fresh-wine-glass-with-grapes-plaster-piece-sack-background-vertical_176474-64036.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/front-view-black-wine-bottle-red-wine-glass-cheese-cut-lemon-pieces-dark-chocolate-wooden-boards-dried-flower-branch-red-table-copy-place_140725-146350.jpg", buttonText: "Ansehen" }
]}
title="Unsere Spezialitäten"
description="Traditionelle Gerichte, mit Liebe zubereitet."
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
useInvertedBackground={true}
title="Unsere Geschichte"
description={[
"Das Limette ist mehr als nur ein Restaurant. Es ist ein Ort der Begegnung, an dem italienische Tradition auf rheinische Gastfreundschaft trifft.", "Seit vielen Jahren bewirten wir unsere Gäste mit Leidenschaft, frischen Zutaten und einer Prise italienischem Lebensgefühl."]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="opacity"
textboxLayout="default"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah Müller", role: "Stammgast", company: "Frechen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081870.jpg" },
{ id: "2", name: "Thomas Schneider", role: "Besucher", company: "Köln", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cute-couple-enjoying-christmas-eve-dinner-with-friends-celebrating-holiday-with-traditional-food-diverse-people-gathering-home-with-family-eat-drink-wine-xmas-event_482257-73368.jpg" },
{ id: "3", name: "Julia Weber", role: "Stammgast", company: "Frechen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-eatingout-having-breakfast-talking-friend-table-looking-aside-with-cheerful-smile-sitting-near-mobile-phone-terrace_197531-30313.jpg" },
{ id: "4", name: "Marc Fischer", role: "Besucher", company: "Hürth", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-together_23-2149152898.jpg" },
{ id: "5", name: "Elena Rossi", role: "Gourmet", company: "Italien", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-man-funny-outfit-bowtie-pointing-finger-left-looking-logo-showing-advert_1258-172157.jpg" }
]}
title="Was unsere Gäste sagen"
description="Ihre Zufriedenheit liegt uns am Herzen."
/>
</div>
<div id="menu" data-section="menu">
<FeatureCardTwentyNine
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
features={[
{ title: "Pizza Classica", description: "Traditionell belegt, im Steinofen gebacken.", imageSrc: "http://img.b2bpic.net/free-photo/baking-pizza-wood-fired-oven_52683-106695.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/delicious-vegan-pizza-social-post_23-2151895448.jpg", buttonText: "Ansehen" },
{ title: "Handgemachte Pasta", description: "Frisch nach Familienrezept zubereitet.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-blue-plate-with-delicious-pasta-meal-served-with-tomato-meat-tan-color-towel-dinner-different-spices_140725-143902.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/top-view-shaped-italian-pasta-flower-form-raw-yellow-grey-desk-italian-raw-meal-spaghetti_140725-23117.jpg", buttonText: "Ansehen" },
{ title: "Feine Weine", description: "Eine kuratierte Auswahl an italienischen Weinen.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fresh-wine-glass-with-grapes-plaster-piece-sack-background-vertical_176474-64036.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/front-view-black-wine-bottle-red-wine-glass-cheese-cut-lemon-pieces-dark-chocolate-wooden-boards-dried-flower-branch-red-table-copy-place_140725-146350.jpg", buttonText: "Ansehen" }
]}
title="Unsere Spezialitäten"
description="Traditionelle Gerichte, mit Liebe zubereitet."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Sind Hunde erlaubt?", content: "Ja, wir sind ein hundefreundliches Restaurant." },
{ id: "2", title: "Gibt es Hochstühle?", content: "Selbstverständlich, wir sind familienfreundlich." },
{ id: "3", title: "Kann man draußen sitzen?", content: "Ja, unsere Terrasse ist bei gutem Wetter für Sie geöffnet." }
]}
imageSrc="http://img.b2bpic.net/free-photo/male-cook-holding-white-board-shirt-apron-looking-merry-front-view_176474-22453.jpg"
mediaAnimation="slide-up"
title="Häufige Fragen"
description="Alles, was Sie über Limette wissen müssen."
faqsAnimation="blur-reveal"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="opacity"
textboxLayout="default"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah Müller", role: "Stammgast", company: "Frechen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081870.jpg" },
{ id: "2", name: "Thomas Schneider", role: "Besucher", company: "Köln", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cute-couple-enjoying-christmas-eve-dinner-with-friends-celebrating-holiday-with-traditional-food-diverse-people-gathering-home-with-family-eat-drink-wine-xmas-event_482257-73368.jpg" },
{ id: "3", name: "Julia Weber", role: "Stammgast", company: "Frechen", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-woman-eatingout-having-breakfast-talking-friend-table-looking-aside-with-cheerful-smile-sitting-near-mobile-phone-terrace_197531-30313.jpg" },
{ id: "4", name: "Marc Fischer", role: "Besucher", company: "Hürth", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-together_23-2149152898.jpg" },
{ id: "5", name: "Elena Rossi", role: "Gourmet", company: "Italien", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-man-funny-outfit-bowtie-pointing-finger-left-looking-logo-showing-advert_1258-172157.jpg" }
]}
title="Was unsere Gäste sagen"
description="Ihre Zufriedenheit liegt uns am Herzen."
/>
</div>
<div id="metric" data-section="metric">
<MetricCardThree
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{ id: "1", title: "Pizza Variationen", value: "25+", icon: Pizza },
{ id: "2", title: "Pasta Gerichte", value: "15+", icon: Star },
{ id: "3", title: "Zufriedene Gäste", value: "3.8k+", icon: Heart }
]}
title="Limette in Zahlen"
description="Was wir bisher erreicht haben."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Sind Hunde erlaubt?", content: "Ja, wir sind ein hundefreundliches Restaurant." },
{ id: "2", title: "Gibt es Hochstühle?", content: "Selbstverständlich, wir sind familienfreundlich." },
{ id: "3", title: "Kann man draußen sitzen?", content: "Ja, unsere Terrasse ist bei gutem Wetter für Sie geöffnet." }
]}
imageSrc="http://img.b2bpic.net/free-photo/male-cook-holding-white-board-shirt-apron-looking-merry-front-view_176474-22453.jpg"
mediaAnimation="slide-up"
title="Häufige Fragen"
description="Alles, was Sie über Limette wissen müssen."
faqsAnimation="blur-reveal"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
text="Besuchen Sie uns in der Aachener Str. 532, Frechen. Wir freuen uns auf Ihren Besuch!"
buttons={[{ text: "02234 2779492", href: "tel:022342779492" }]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardThree
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{ id: "1", title: "Pizza Variationen", value: "25+", icon: Pizza },
{ id: "2", title: "Pasta Gerichte", value: "15+", icon: Star },
{ id: "3", title: "Zufriedene Gäste", value: "3.8k+", icon: Heart }
]}
title="Limette in Zahlen"
description="Was wir bisher erreicht haben."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Kontakt", items: [
{ label: "Aachener Str. 532, Frechen", href: "#" },
{ label: "02234 2779492", href: "tel:022342779492" }
]
},
{
title: "Öffnungszeiten", items: [
{ label: "Mo: 12:00 - 22:00", href: "#" },
{ label: "So: Ruhetag", href: "#" }
]
}
]}
bottomLeftText="© 2024 Limette Restaurant"
bottomRightText="Alle Rechte vorbehalten."
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
text="Besuchen Sie uns in der Aachener Str. 532, Frechen. Wir freuen uns auf Ihren Besuch!"
buttons={[{ text: "02234 2779492", href: "tel:022342779492" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Kontakt", items: [
{ label: "Aachener Str. 532, Frechen", href: "#" },
{ label: "02234 2779492", href: "tel:022342779492" }
]
},
{
title: "Öffnungszeiten", items: [
{ label: "Mo: 12:00 - 22:00", href: "#" },
{ label: "So: Ruhetag", href: "#" }
]
}
]}
bottomLeftText="© 2024 Limette Restaurant"
bottomRightText="Alle Rechte vorbehalten."
/>
</div>
</ReactLenis>
</ThemeProvider>
);