Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9351afc100 | |||
| 0c462b1236 | |||
| 00b9bfc774 | |||
| 79d9ff2140 | |||
| f28a43cd48 | |||
| 90e7b80bba | |||
| 8ef8d203e7 | |||
| 3ef16c7b4e |
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
|||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -38,7 +38,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Kontakt", id: "contact" },
|
{ name: "Kontakt", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Mili’s Cafe"
|
brandName="Mili’s Cafe"
|
||||||
button={{ text: "Tisch anfragen", href: "https://www.miliscafe-hamburg.de/" }}
|
button={{ text: "Tisch reservieren", href: "https://www.miliscafe-hamburg.de/" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ export default function LandingPage() {
|
|||||||
description="Spanisch-marokkanisches Café & Bistro in Hamburg Neustadt — mit hausgemachten Spezialitäten, Frühstück, Brunch, Kaffee und mediterranen Momenten."
|
description="Spanisch-marokkanisches Café & Bistro in Hamburg Neustadt — mit hausgemachten Spezialitäten, Frühstück, Brunch, Kaffee und mediterranen Momenten."
|
||||||
tag="Neu in Neustadt"
|
tag="Neu in Neustadt"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Menü entdecken", href: "https://www.miliscafe-hamburg.de/" },
|
{ text: "Menü ansehen", href: "https://www.miliscafe-hamburg.de/" },
|
||||||
{ text: "Route planen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
{ text: "Route planen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
@@ -104,7 +104,7 @@ export default function LandingPage() {
|
|||||||
title="Erlebe Mili’s Café online"
|
title="Erlebe Mili’s Café online"
|
||||||
description="Folge uns für tägliche Inspirationen, neue Gerichte und mediterrane Vibes aus der Neustadt."
|
description="Folge uns für tägliche Inspirationen, neue Gerichte und mediterrane Vibes aus der Neustadt."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Instagram öffnen", href: "https://www.instagram.com/milis_cafe_/" },
|
{ text: "Instagram öffnen", href: "https://www.instagram.com/milis_cafe/" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -128,7 +128,7 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "rotated-rays-static" }}
|
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"
|
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={[
|
buttons={[
|
||||||
{ text: "Route öffnen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
{ text: "Route öffnen", href: "https://maps.app.goo.gl/yC7LqP7Jb5J9f5K88" },
|
||||||
{ text: "Jetzt anrufen", href: "tel:+494071622282" },
|
{ text: "Jetzt anrufen", href: "tel:+494071622282" },
|
||||||
|
|||||||
Reference in New Issue
Block a user