Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-17 18:51:15 +00:00
5 changed files with 78 additions and 47 deletions

View File

@@ -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",
},
]}

View File

@@ -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}
/>

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${inter.variable} ${halant.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`,
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -62,11 +62,11 @@ export default function HomePage() {
buttonAnimation="slide-up"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg?_wi=1",
imageAlt: "Creamy premium gelato on spoon",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cookies-ice-cream_23-2149637192.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cookies-ice-cream_23-2149637192.jpg?_wi=1",
imageAlt: "Cozy Italian café outdoor seating",
},
]}
@@ -89,7 +89,7 @@ export default function HomePage() {
name: "Spaghettieis",
price: "ab €5,50",
variant: "Klassiker",
imageSrc: "http://img.b2bpic.net/free-photo/yummy-delights-table_140725-5627.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yummy-delights-table_140725-5627.jpg?_wi=1",
imageAlt: "Artistic spaghetti ice cream with sauce",
},
{
@@ -97,7 +97,7 @@ export default function HomePage() {
name: "Pistachio Premium",
price: "ab €4,50",
variant: "Klassisch",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mint-chocolate-ice-cream_23-2150096671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mint-chocolate-ice-cream_23-2150096671.jpg?_wi=1",
imageAlt: "Creamy pistachio gelato",
},
{
@@ -105,7 +105,7 @@ export default function HomePage() {
name: "Dark Chocolate",
price: "ab €4,50",
variant: "Intensiv",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-chocolate-dessert-restaurant_23-2148001611.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-chocolate-dessert-restaurant_23-2148001611.jpg?_wi=1",
imageAlt: "Rich dark chocolate gelato",
},
{
@@ -113,7 +113,7 @@ export default function HomePage() {
name: "Erdbeere",
price: "ab €4,50",
variant: "Frisch",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-strawberry-granita-dessert_23-2149400108.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-strawberry-granita-dessert_23-2149400108.jpg?_wi=1",
imageAlt: "Fresh strawberry gelato",
},
]}
@@ -131,7 +131,7 @@ export default function HomePage() {
tag="💝 Unser Versprechen"
tagIcon={Heart}
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=1"
imageAlt="Modern ice cream shop counter"
useInvertedBackground={true}
/>
@@ -143,37 +143,37 @@ export default function HomePage() {
{
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=1",
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=1",
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=1",
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=1",
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=1",
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=1",
imageAlt: "Diverse group of happy customers",
},
]}
@@ -196,7 +196,7 @@ export default function HomePage() {
{
title: "Gemütliches Ambiente",
description: "Entspannen Sie auf unseren Außenplätzen mit schöner Aussicht.",
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-girls-trendy-summer-sundress-carefree-women-chatting-veranda-cafe-street-background-sunglasses-positive-models-having-fun-communicating_158538-16073.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-girls-trendy-summer-sundress-carefree-women-chatting-veranda-cafe-street-background-sunglasses-positive-models-having-fun-communicating_158538-16073.jpg?_wi=1",
imageAlt: "Outdoor seating area with umbrella",
buttonIcon: MapPin,
buttonHref: "https://maps.google.com",
@@ -204,7 +204,7 @@ export default function HomePage() {
{
title: "Professionelle Zubereitung",
description: "Jede Kugel wird mit Sorgfalt und Kunstfertigkeit serviert.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hand-holding-ice-cream-cone_23-2149431400.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hand-holding-ice-cream-cone_23-2149431400.jpg?_wi=1",
imageAlt: "Perfect ice cream scoop",
buttonIcon: ChefHat,
buttonHref: "/speisekarte",
@@ -212,7 +212,7 @@ export default function HomePage() {
{
title: "Familie & Freunde",
description: "Der perfekte Ort, um besondere Momente zu teilen.",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-toasting-with-cocktails_23-2148238290.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-toasting-with-cocktails_23-2148238290.jpg?_wi=1",
imageAlt: "Happy family enjoying gelato",
buttonIcon: Users,
buttonHref: "tel:+49XXXXXXXXXX",

View File

@@ -51,7 +51,7 @@ export default function MenuPage() {
name: "Pistachio Premium",
price: "ab €4,50",
variant: "Klassisch",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mint-chocolate-ice-cream_23-2150096671.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mint-chocolate-ice-cream_23-2150096671.jpg?_wi=2",
imageAlt: "Creamy pistachio gelato",
},
{
@@ -59,7 +59,7 @@ export default function MenuPage() {
name: "Dark Chocolate",
price: "ab €4,50",
variant: "Intensiv",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-chocolate-dessert-restaurant_23-2148001611.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-fresh-chocolate-dessert-restaurant_23-2148001611.jpg?_wi=2",
imageAlt: "Rich dark chocolate gelato",
},
{
@@ -67,7 +67,7 @@ export default function MenuPage() {
name: "Erdbeere",
price: "ab €4,50",
variant: "Frisch",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-strawberry-granita-dessert_23-2149400108.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-strawberry-granita-dessert_23-2149400108.jpg?_wi=2",
imageAlt: "Fresh strawberry gelato",
},
{
@@ -75,7 +75,7 @@ export default function MenuPage() {
name: "Spaghettieis Signature",
price: "ab €5,50",
variant: "Besteller",
imageSrc: "http://img.b2bpic.net/free-photo/yummy-delights-table_140725-5627.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yummy-delights-table_140725-5627.jpg?_wi=2",
imageAlt: "Artistic spaghetti ice cream with sauce",
},
{
@@ -83,7 +83,7 @@ export default function MenuPage() {
name: "Vanille di Sicilia",
price: "ab €4,00",
variant: "Klassisch",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-ice-cream-winter-time_23-2149618900.jpg?_wi=2",
imageAlt: "Sicilian vanilla gelato",
},
{
@@ -91,7 +91,7 @@ export default function MenuPage() {
name: "Nocciola Piemonte",
price: "ab €4,50",
variant: "Premium",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cookies-ice-cream_23-2149637192.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cookies-ice-cream_23-2149637192.jpg?_wi=2",
imageAlt: "Hazelnut gelato premium",
},
]}
@@ -113,7 +113,7 @@ export default function MenuPage() {
{
title: "Saisonale Highlights",
description: "Wir bieten wechselnde Spezialitäten je nach Jahreszeit mit frischen, lokalen Zutaten.",
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-girls-trendy-summer-sundress-carefree-women-chatting-veranda-cafe-street-background-sunglasses-positive-models-having-fun-communicating_158538-16073.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-girls-trendy-summer-sundress-carefree-women-chatting-veranda-cafe-street-background-sunglasses-positive-models-having-fun-communicating_158538-16073.jpg?_wi=2",
imageAlt: "Seasonal specialties display",
buttonIcon: MapPin,
buttonHref: "https://maps.google.com",
@@ -121,7 +121,7 @@ export default function MenuPage() {
{
title: "Zubereitungstechniken",
description: "Alle unsere Gelato-Sorten werden mit traditionellen italienischen Methoden hergestellt.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hand-holding-ice-cream-cone_23-2149431400.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hand-holding-ice-cream-cone_23-2149431400.jpg?_wi=2",
imageAlt: "Professional ice cream preparation",
buttonIcon: ChefHat,
buttonHref: "/",
@@ -129,7 +129,7 @@ export default function MenuPage() {
{
title: "Allergenfreie Optionen",
description: "Wir bieten laktose- und glutenfreie Varianten für alle unsere Lieblingsgeschmäcker.",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-toasting-with-cocktails_23-2148238290.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-toasting-with-cocktails_23-2148238290.jpg?_wi=2",
imageAlt: "Allergen-friendly options",
buttonIcon: Users,
buttonHref: "tel:+49XXXXXXXXXX",