diff --git a/src/app/page.tsx b/src/app/page.tsx
index aad7dc3..8f6e0be 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,6 +10,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
+import { Instagram, Facebook, MapPin, Phone, Mail, Clock } from 'lucide-react';
export default function LandingPage() {
return (
@@ -32,6 +33,7 @@ export default function LandingPage() {
{ name: "Frühstück & Menü", id: "menu" },
{ name: "Dein Frühstück", id: "custom" },
{ name: "Über uns", id: "about" },
+ { name: "Galerie", id: "gallery" },
{ name: "Kontakt", id: "contact" }
]}
button={{ text: "Reservieren", href: "#contact" }}
@@ -127,7 +129,7 @@ export default function LandingPage() {
+
+
@@ -188,21 +215,23 @@ export default function LandingPage() {
title: "Navigation", items: [
{ label: "Frühstück & Menü", href: "#menu" },
{ label: "Dein Frühstück", href: "#custom" },
- { label: "Über uns", href: "#about" }
+ { label: "Über uns", href: "#about" },
+ { label: "Galerie", href: "#gallery" },
+ { label: "Kontakt", href: "#contact" }
]
},
{
- title: "Kontakt", items: [
- { label: "Telefon: +49 (0) 123 45678", href: "tel:+4912345678" },
- { label: "Email: hallo@cafegusto.de", href: "mailto:hallo@cafegusto.de" },
- { label: "Öffnungszeiten: Mo-Fr 7-18h", href: "#" }
+ title: "Kontaktiere uns", items: [
+ { label: "📞 +49 (0) 123 45678", href: "tel:+4912345678" },
+ { label: "✉️ hallo@cafegusto.de", href: "mailto:hallo@cafegusto.de" },
+ { label: "🕐 Mo-Fr 7-18h | Sa-So 8-18h", href: "#" }
]
},
{
title: "Folge uns", items: [
- { label: "Instagram", href: "https://instagram.com" },
- { label: "Facebook", href: "https://facebook.com" },
- { label: "Google Maps", href: "https://maps.google.com" }
+ { label: "Instagram", href: "https://instagram.com/cafegusto" },
+ { label: "Facebook", href: "https://facebook.com/cafegusto" },
+ { label: "Google Maps", href: "https://maps.google.com/?q=cafegusto" }
]
}
]}