diff --git a/src/app/bewertungen/page.tsx b/src/app/bewertungen/page.tsx index 82f90f7..c63e855 100644 --- a/src/app/bewertungen/page.tsx +++ b/src/app/bewertungen/page.tsx @@ -44,37 +44,37 @@ export default function ReviewsPage() { { id: "1", name: "Sarah M.", - imageSrc: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3945.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3945.jpg?_wi=2", imageAlt: "Happy customer Sarah enjoying gelato", }, { id: "2", name: "Marco L.", - imageSrc: "http://img.b2bpic.net/free-photo/charming-lovely-girl-with-long-hair-nude-make-up-is-looking-aside-dreamy-while-drinking-coffee-cafeteria_291650-2137.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/charming-lovely-girl-with-long-hair-nude-make-up-is-looking-aside-dreamy-while-drinking-coffee-cafeteria_291650-2137.jpg?_wi=2", imageAlt: "Satisfied customer Marco with ice cream", }, { id: "3", name: "Familie K.", - imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-drinking-coffee-garden_23-2147986365.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-drinking-coffee-garden_23-2147986365.jpg?_wi=2", imageAlt: "Couple enjoying gelato together", }, { id: "4", name: "Tim S.", - imageSrc: "http://img.b2bpic.net/free-photo/merry-child-french-beret-celebrating-birthday-ecstatic-preteen-girl-with-cake-isolated-yellow-wall_197531-14389.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/merry-child-french-beret-celebrating-birthday-ecstatic-preteen-girl-with-cake-isolated-yellow-wall_197531-14389.jpg?_wi=2", imageAlt: "Happy child with ice cream cone", }, { id: "5", name: "Gruppe Freunde", - imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-outside_23-2149033588.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-outside_23-2149033588.jpg?_wi=2", imageAlt: "Family group enjoying dessert", }, { id: "6", name: "Diverse Community", - imageSrc: "http://img.b2bpic.net/free-photo/women-enjoying-80s-summer-aesthetics_23-2150765092.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/women-enjoying-80s-summer-aesthetics_23-2150765092.jpg?_wi=2", imageAlt: "Diverse group of happy customers", }, ]} diff --git a/src/app/kontakt/page.tsx b/src/app/kontakt/page.tsx index 5cd3f77..40b9827 100644 --- a/src/app/kontakt/page.tsx +++ b/src/app/kontakt/page.tsx @@ -44,7 +44,7 @@ export default function ContactPage() { description="Seit Jahren vertrauen Familien, Paare und Freunde auf unsere Handwerkskunst. Wir verwenden nur natürliche Zutaten, bereiten jedes Eis täglich frisch zu und servieren großzügige, faire Portionen. Unsere freundliche, herzliche Atmosphäre macht jeden Besuch zu einem besonderen Moment." tag="💝 Unser Versprechen" tagAnimation="blur-reveal" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273176.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273176.jpg?_wi=2" imageAlt="Modern ice cream shop counter" useInvertedBackground={true} /> diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..898c899 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,58 @@ import type { Metadata } from "next"; +import { Libre_Baskerville, Inter } from "next/font/google"; import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "Eis Café Bella Fiore – Authentisches Gelato", + description: "Frisches italienisches Eis, handwerklich zubereitet mit natürlichen Zutaten. Große Portionen, freundlicher Service, lokale Tradition seit Jahren.", + keywords: "Eiscafé, Gelato, italienisches Eis, Eis in der Nähe, Dessert, Café", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Eis Café Bella Fiore – Authentisches italienisches Gelato", + description: "Frisches handwerklich hergestelltes Gelato in Ihrer Nachbarschaft. Besuchen Sie uns und erleben Sie italienische Qualität.", + type: "website", + siteName: "Eis Café Bella Fiore", + images: [ + { + url: "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg", + alt: "Premium gelato close-up", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Eis Café Bella Fiore – Authentisches Gelato", + description: "Handwerklich zubereitet mit Liebe. Frisch, fair & köstlich.", + images: [ + "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,16 +61,18 @@ export default function RootLayout({ return ( - + {children}