Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9351afc100 | |||
| 0c462b1236 | |||
| 00b9bfc774 | |||
| 79d9ff2140 | |||
| f28a43cd48 | |||
| 90e7b80bba | |||
| 8ef8d203e7 | |||
| 3ef16c7b4e | |||
| c7542d78b1 | |||
| f6b4583d59 | |||
| 485ce66e3b | |||
| 4d199ba979 | |||
| 49973d6a5f | |||
| fca65b0389 | |||
| 2c9d3ce930 |
47
src/app/datenschutz/page.tsx
Normal file
47
src/app/datenschutz/page.tsx
Normal file
@@ -0,0 +1,47 @@
|
||||
"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 FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function DatenschutzPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
]}
|
||||
brandName="Mili’s Cafe"
|
||||
/>
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Datenschutz"
|
||||
sections={[
|
||||
{ heading: "Allgemeiner Hinweis", content: { type: "paragraph", text: "Wir nehmen den Schutz Ihrer persönlichen Daten sehr ernst und behandeln Ihre personenbezogenen Daten vertraulich und entsprechend der gesetzlichen Vorschriften." } }
|
||||
]}
|
||||
/>
|
||||
<FooterBaseCard
|
||||
logoText="Mili’s Cafe"
|
||||
columns={[
|
||||
{ title: "Kontakt", items: [{ label: "Neustädter Neuer Weg 20", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" }, { label: "040 71622282", href: "tel:+494071622282" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
48
src/app/impressum/page.tsx
Normal file
48
src/app/impressum/page.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
"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 FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function ImpressumPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
]}
|
||||
brandName="Mili’s Cafe"
|
||||
/>
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Impressum"
|
||||
sections={[
|
||||
{ heading: "Angaben gemäß § 5 TMG", content: { type: "paragraph", text: "Mili’s Cafe\nNeustädter Neuer Weg 20\n20459 Hamburg" } },
|
||||
{ heading: "Kontakt", content: { type: "paragraph", text: "Telefon: 040 71622282" } }
|
||||
]}
|
||||
/>
|
||||
<FooterBaseCard
|
||||
logoText="Mili’s Cafe"
|
||||
columns={[
|
||||
{ title: "Kontakt", items: [{ label: "Neustädter Neuer Weg 20", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" }, { label: "040 71622282", href: "tel:+494071622282" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
111
src/app/page.tsx
111
src/app/page.tsx
@@ -11,7 +11,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Award, Briefcase, Coffee, Gift, Sparkles } from "lucide-react";
|
||||
import { Award, Briefcase, Coffee, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,41 +31,30 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Über uns", id: "about"},
|
||||
{
|
||||
name: "Menü", id: "products"},
|
||||
{
|
||||
name: "Besuch", id: "visit"},
|
||||
{
|
||||
name: "Kontakt", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Über uns", id: "about" },
|
||||
{ name: "Menü", id: "products" },
|
||||
{ name: "Besuch", id: "visit" },
|
||||
{ name: "Kontakt", id: "contact" },
|
||||
]}
|
||||
brandName="Mili’s Cafe"
|
||||
button={{
|
||||
text: "Tisch anfragen", href: "#contact"}}
|
||||
button={{ text: "Tisch reservieren", href: "https://www.miliscafe-hamburg.de/" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Hamburgs warmer Ort für Frühstück, Kaffee & Orient."
|
||||
description="Spanisch-marokkanisches Café & Bistro in Hamburg Neustadt — mit hausgemachten Spezialitäten, Frühstück, Brunch, Kaffee und mediterranen Momenten."
|
||||
tag="Neu in Neustadt"
|
||||
buttons={[
|
||||
{
|
||||
text: "Menü entdecken", href: "#products"},
|
||||
{
|
||||
text: "Route planen", href: "https://maps.google.com"},
|
||||
{ text: "Menü ansehen", href: "https://www.miliscafe-hamburg.de/" },
|
||||
{ text: "Route planen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortment-croissants-with-peanut-butter_23-2148566686.jpg", imageAlt: "moroccan cafe interior breakfast table"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/traditional-azerbaijani-breakfast-with-egg-dish-pancakes-fresh-salad-jam-cheese-honey_140725-204.jpg", imageAlt: "cafe table with coffee and brunch"}
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/assortment-croissants-with-peanut-butter_23-2148566686.jpg", imageAlt: "moroccan cafe interior breakfast table" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/traditional-azerbaijani-breakfast-with-egg-dish-pancakes-fresh-salad-jam-cheese-honey_140725-204.jpg", imageAlt: "cafe table with coffee and brunch" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
@@ -95,18 +84,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Marokkanisches Frühstück", price: "16,90 €", imageSrc: "http://img.b2bpic.net/free-photo/side-view-breakfast-setting-with-mixed-combination-food_140725-10145.jpg", imageAlt: "traditional moroccan breakfast board"},
|
||||
{
|
||||
id: "2", name: "Glück für 2", price: "29,90 €", imageSrc: "http://img.b2bpic.net/free-photo/croissants-wooden-background_23-2148322202.jpg", imageAlt: "two person breakfast brunch platter"},
|
||||
{
|
||||
id: "3", name: "Baguette Apo Marokko", price: "12,90 €", imageSrc: "http://img.b2bpic.net/free-photo/cooking-garlic-bread-wooden-board_23-2147761384.jpg", imageAlt: "moroccan baguette sandwich"},
|
||||
{
|
||||
id: "4", name: "Mili’s Chicken Sandwich", price: "11,90 €", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-desk-with-orange-juice_140725-6327.jpg", imageAlt: "chicken sandwich cafe style"},
|
||||
{
|
||||
id: "5", name: "French Toast Deluxe", price: "13,90 €", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-cake-slices-with-strawberries-candies-light-floor_140725-120635.jpg", imageAlt: "french toast with fresh berries"},
|
||||
{
|
||||
id: "6", name: "Tajine Special", price: "18,90 €", imageSrc: "http://img.b2bpic.net/free-photo/hearty-meat-leafy-greens-stew-with-flatbread_140725-2919.jpg", imageAlt: "moroccan vegetable tajine pot"},
|
||||
{ id: "1", name: "Marokkanisches Frühstück", price: "16,90 €", imageSrc: "http://img.b2bpic.net/free-photo/side-view-breakfast-setting-with-mixed-combination-food_140725-10145.jpg" },
|
||||
{ id: "2", name: "Glück für 2", price: "29,90 €", imageSrc: "http://img.b2bpic.net/free-photo/croissants-wooden-background_23-2148322202.jpg" },
|
||||
{ id: "3", name: "Baguette Apo Marokko", price: "12,90 €", imageSrc: "http://img.b2bpic.net/free-photo/cooking-garlic-bread-wooden-board_23-2147761384.jpg" },
|
||||
{ id: "4", name: "Mili’s Chicken Sandwich", price: "11,90 €", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-desk-with-orange-juice_140725-6327.jpg" },
|
||||
{ id: "5", name: "French Toast Deluxe", price: "13,90 €", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-cake-slices-with-strawberries-candies-light-floor_140725-120635.jpg" },
|
||||
{ id: "6", name: "Tajine Special", price: "18,90 €", imageSrc: "http://img.b2bpic.net/free-photo/hearty-meat-leafy-greens-stew-with-flatbread_140725-2919.jpg" },
|
||||
]}
|
||||
title="Unsere Spezialitäten"
|
||||
description="Entdecke unsere hausgemachten Gerichte für dein perfektes Frühstück."
|
||||
@@ -117,13 +100,11 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"@milis.cafe", "@hamburgfoodie", "@brunchguidehh", "@neustadtkultur", "@cafelovers"]}
|
||||
names={["@milis.cafe", "@hamburgfoodie", "@brunchguidehh", "@neustadtkultur", "@cafelovers"]}
|
||||
title="Erlebe Mili’s Café online"
|
||||
description="Folge uns für tägliche Inspirationen, neue Gerichte und mediterrane Vibes aus der Neustadt."
|
||||
buttons={[
|
||||
{
|
||||
text: "Instagram öffnen", href: "https://www.instagram.com/milis.cafe/"},
|
||||
{ text: "Instagram öffnen", href: "https://www.instagram.com/milis_cafe/" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -134,15 +115,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Events & Meetings", description: "Perfekt für geschäftliche Anlässe.", icon: Briefcase,
|
||||
},
|
||||
{
|
||||
title: "Private Feiern", description: "Lasse dich orientalisch verwöhnen.", icon: Gift,
|
||||
},
|
||||
{
|
||||
title: "Maßgeschneidert", description: "Individuelle kulinarische Konzepte.", icon: Award,
|
||||
},
|
||||
{ title: "Events & Meetings", description: "Perfekt für geschäftliche Anlässe.", icon: Briefcase },
|
||||
{ title: "Private Feiern", description: "Lasse dich orientalisch verwöhnen.", icon: Gift },
|
||||
{ title: "Maßgeschneidert", description: "Individuelle kulinarische Konzepte.", icon: Award },
|
||||
]}
|
||||
title="Catering für besondere Momente"
|
||||
description="Mili’s Cafe bietet mediterrane und marokkanische Spezialitäten für Events, Meetings und besondere Anlässe."
|
||||
@@ -152,14 +127,11 @@ export default function LandingPage() {
|
||||
<div id="visit" data-section="visit">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static"}}
|
||||
text="Neustädter Neuer Weg 20, 20459 Hamburg | Öffnungszeiten: Mo-Sa 09:00–18:00 (Fr/Sa bis 20:00), So 09:00-18:00"
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
text="Neustädter Neuer Weg 20, 20459 Hamburg | Mo-Sa 09:00–18:00 (Fr/Sa bis 20:00), So 09:00-18:00"
|
||||
buttons={[
|
||||
{
|
||||
text: "Route öffnen", href: "https://maps.google.com"},
|
||||
{
|
||||
text: "Jetzt anrufen", href: "tel:+49123456789"},
|
||||
{ text: "Route öffnen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
||||
{ text: "Jetzt anrufen", href: "tel:+494071622282" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -169,12 +141,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Wie reserviere ich einen Tisch?", content: "Sende uns einfach eine Nachricht über unser Kontaktformular oder ruf uns an."},
|
||||
{
|
||||
id: "2", title: "Bietet ihr vegane Optionen an?", content: "Ja, wir bieten verschiedene vegetarische und vegane Frühstücksoptionen an."},
|
||||
{
|
||||
id: "3", title: "Habt ihr einen Außenbereich?", content: "Bei gutem Wetter begrüßen wir euch gerne auf unserer sonnigen Terrasse."},
|
||||
{ id: "1", title: "Wie reserviere ich einen Tisch?", content: "Reserviere deinen Tisch direkt über unser Online-Tool unter https://www.miliscafe-hamburg.de/" },
|
||||
{ id: "2", title: "Bietet ihr vegane Optionen an?", content: "Ja, wir bieten verschiedene vegetarische und vegane Frühstücksoptionen an." },
|
||||
{ id: "3", title: "Habt ihr einen Außenbereich?", content: "Bei gutem Wetter begrüßen wir euch gerne auf unserer sonnigen Terrasse." },
|
||||
]}
|
||||
title="Noch Fragen?"
|
||||
description="Schreib uns gerne eine Nachricht."
|
||||
@@ -186,26 +155,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Mili’s Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{
|
||||
label: "Neustädter Neuer Weg 20", href: "#"},
|
||||
{
|
||||
label: "0123 456 789", href: "tel:+49123456789"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{
|
||||
label: "Impressum", href: "#"},
|
||||
{
|
||||
label: "Datenschutz", href: "#"},
|
||||
],
|
||||
},
|
||||
{ title: "Kontakt", items: [{ label: "Neustädter Neuer Weg 20", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" }, { label: "040 71622282", href: "tel:+494071622282" }] },
|
||||
{ title: "Rechtliches", items: [{ label: "Impressum", href: "/impressum" }, { label: "Datenschutz", href: "/datenschutz" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user