diff --git a/src/app/datenschutz/page.tsx b/src/app/datenschutz/page.tsx new file mode 100644 index 0000000..bee430e --- /dev/null +++ b/src/app/datenschutz/page.tsx @@ -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 ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/impressum/page.tsx b/src/app/impressum/page.tsx new file mode 100644 index 0000000..64ebe99 --- /dev/null +++ b/src/app/impressum/page.tsx @@ -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 ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index b7d64af..60e35be 100644 --- a/src/app/page.tsx +++ b/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 ( @@ -38,7 +38,7 @@ export default function LandingPage() { { name: "Kontakt", id: "contact" }, ]} brandName="Mili’s Cafe" - button={{ text: "Tisch anfragen", href: "https://www.miliscafe-hamburg.de/" }} + button={{ text: "Tisch reservieren", href: "https://www.miliscafe-hamburg.de/" }} /> @@ -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." tag="Neu in Neustadt" 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" }, ]} mediaItems={[ @@ -128,7 +128,7 @@ export default function LandingPage() {