Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-10 19:09:04 +00:00
4 changed files with 76 additions and 37 deletions

View File

@@ -72,19 +72,19 @@ export default function AboutPage() {
id: 1,
title: "Handwerkliche Excellence",
description: "Unsere Küche verfolgt die alte Tradition des Handwerks mit moderner Innovation. Jedes Gericht wird mit Liebe und Präzision zubereitet.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=5",
},
{
id: 2,
title: "Nachhaltige Partnerschaften",
description: "Wir arbeiten mit lokalen Bauern und Lieferanten zusammen, die unsere Vision von Qualität und Nachhaltigkeit teilen.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=6",
},
{
id: 3,
title: "Persönliche Beziehungen",
description: "Wir kennen unsere Gäste und ihre Vorlieben. Jeder Besuch wird zu einer persönlichen Erfahrung, nicht nur zu einem Essen.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=7",
},
]}
textboxLayout="default"
@@ -105,7 +105,7 @@ export default function AboutPage() {
role: "Marketing Manager",
company: "München",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg?_wi=3",
imageAlt: "Portrait von Sarah Müller",
},
{
@@ -114,7 +114,7 @@ export default function AboutPage() {
role: "Geschäftsführer",
company: "Stuttgart",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2",
imageAlt: "Portrait von Martin Schmidt",
},
{
@@ -123,7 +123,7 @@ export default function AboutPage() {
role: "Architektin",
company: "Berlin",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg?_wi=3",
imageAlt: "Portrait von Julia Wagner",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Tresor Restaurant Göppingen | Fine Dining & Reservierungen",
description: "Tresor Restaurant in Göppingen - Kulinarische Exzellenz mit regionalen Zutaten, gemütliche Atmosphäre und herzliche Gastfreundschaft. Jetzt online reservieren!",
keywords: "Restaurant Göppingen, Fine Dining, Reservierung, deutsche Küche, Schnitzel, Pasta, Göppingen",
metadataBase: new URL("https://tresor-restaurant.de"),
alternates: {
canonical: "https://tresor-restaurant.de",
},
openGraph: {
title: "Tresor Restaurant - Kulinarische Exzellenz in Göppingen",
description: "Erleben Sie gehobene deutsche und internationale Küche in eleganter Atmosphäre. Reservieren Sie jetzt!",
url: "https://tresor-restaurant.de",
siteName: "Tresor Restaurant",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/woman-eating-food-restaurant_23-2150520105.jpg",
alt: "Tresor Restaurant Interieur",
},
],
},
twitter: {
card: "summary_large_image",
title: "Tresor Restaurant Göppingen",
description: "Premium Dining Experience mit regionalen Zutaten und herzlicher Gastfreundschaft",
images: ["http://img.b2bpic.net/free-photo/woman-eating-food-restaurant_23-2150520105.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -92,25 +92,25 @@ export default function MenuPage() {
id: 1,
title: "Regionale Zutaten",
description: "Wir arbeiten ausschließlich mit lokalen Bauern und Lieferanten zusammen, um die frischesten und besten Zutaten zu garantieren.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=8",
},
{
id: 2,
title: "Meisterhafte Küche",
description: "Unsere erfahrenen Köche kreieren täglich Gerichte, die traditionelle deutsche Küche mit modernen Einflüssen verbinden.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=9",
},
{
id: 3,
title: "Gastfreundschaft",
description: "Jeder Gast wird bei uns wie Familie behandelt. Ihr Wohlbefinden ist unsere höchste Priorität.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=10",
},
{
id: 4,
title: "Gemütliche Atmosphäre",
description: "In unserem Restaurant finden Sie einen Ort zum Entspannen, Genießen und unvergessliche Momente mit Ihren Liebsten zu teilen.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=11",
},
]}
textboxLayout="default"
@@ -128,7 +128,7 @@ export default function MenuPage() {
price: "€18,50",
rating: 5,
reviewCount: "127",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-white-cheese-with-grapes-lemon-slices-dark-background-food-milk-bun-fruit_140725-115836.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-white-cheese-with-grapes-lemon-slices-dark-background-food-milk-bun-fruit_140725-115836.jpg?_wi=2",
imageAlt: "Wiener Schnitzel mit Zitrone",
},
{
@@ -138,7 +138,7 @@ export default function MenuPage() {
price: "€16,00",
rating: 5,
reviewCount: "89",
imageSrc: "http://img.b2bpic.net/free-photo/garlic-pasta-near-spices-blackboard_23-2147849740.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/garlic-pasta-near-spices-blackboard_23-2147849740.jpg?_wi=2",
imageAlt: "Authentische Pasta Carbonara",
},
{
@@ -148,7 +148,7 @@ export default function MenuPage() {
price: "€12,50",
rating: 4,
reviewCount: "65",
imageSrc: "http://img.b2bpic.net/free-photo/plate-with-boiled-egg-wild-garlic-flowers_166373-668.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plate-with-boiled-egg-wild-garlic-flowers_166373-668.jpg?_wi=2",
imageAlt: "Frischer Gartensalat mit Balsamico",
},
{
@@ -158,7 +158,7 @@ export default function MenuPage() {
price: "€8,00",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-dessert-ready-be-served_23-2148622358.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-dessert-ready-be-served_23-2148622358.jpg?_wi=2",
imageAlt: "Gourmet Schokoladen Torte",
},
{
@@ -168,7 +168,7 @@ export default function MenuPage() {
price: "€5,50",
rating: 5,
reviewCount: "112",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337726.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337726.jpg?_wi=2",
imageAlt: "Premium Rotwein im Glas",
},
]}

View File

@@ -98,25 +98,25 @@ export default function HomePage() {
id: 1,
title: "Regionale Zutaten",
description: "Wir arbeiten ausschließlich mit lokalen Bauern und Lieferanten zusammen, um die frischesten und besten Zutaten zu garantieren.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=1",
},
{
id: 2,
title: "Meisterhafte Küche",
description: "Unsere erfahrenen Köche kreieren täglich Gerichte, die traditionelle deutsche Küche mit modernen Einflüssen verbinden.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=2",
},
{
id: 3,
title: "Gastfreundschaft",
description: "Jeder Gast wird bei uns wie Familie behandelt. Ihr Wohlbefinden ist unsere höchste Priorität.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=3",
},
{
id: 4,
title: "Gemütliche Atmosphäre",
description: "In unserem Restaurant finden Sie einen Ort zum Entspannen, Genießen und unvergessliche Momente mit Ihren Liebsten zu teilen.",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/gastronomy-expert-grating-piece-cheese-plate-while-preparing-culinary-dish-dinner-service-restaurant-culinary-gastronomic-chef-cooking-fine-dining-meal-professional-kitchen_482257-44203.jpg?_wi=4",
},
]}
textboxLayout="default"
@@ -138,7 +138,7 @@ export default function HomePage() {
price: "€18,50",
rating: 5,
reviewCount: "127",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-white-cheese-with-grapes-lemon-slices-dark-background-food-milk-bun-fruit_140725-115836.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-white-cheese-with-grapes-lemon-slices-dark-background-food-milk-bun-fruit_140725-115836.jpg?_wi=1",
imageAlt: "Wiener Schnitzel mit Zitrone",
},
{
@@ -148,7 +148,7 @@ export default function HomePage() {
price: "€16,00",
rating: 5,
reviewCount: "89",
imageSrc: "http://img.b2bpic.net/free-photo/garlic-pasta-near-spices-blackboard_23-2147849740.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/garlic-pasta-near-spices-blackboard_23-2147849740.jpg?_wi=1",
imageAlt: "Authentische Pasta Carbonara",
},
{
@@ -158,7 +158,7 @@ export default function HomePage() {
price: "€12,50",
rating: 4,
reviewCount: "65",
imageSrc: "http://img.b2bpic.net/free-photo/plate-with-boiled-egg-wild-garlic-flowers_166373-668.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plate-with-boiled-egg-wild-garlic-flowers_166373-668.jpg?_wi=1",
imageAlt: "Frischer Gartensalat mit Balsamico",
},
{
@@ -168,7 +168,7 @@ export default function HomePage() {
price: "€8,00",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-dessert-ready-be-served_23-2148622358.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-dessert-ready-be-served_23-2148622358.jpg?_wi=1",
imageAlt: "Gourmet Schokoladen Torte",
},
{
@@ -178,7 +178,7 @@ export default function HomePage() {
price: "€5,50",
rating: 5,
reviewCount: "112",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337726.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337726.jpg?_wi=1",
imageAlt: "Premium Rotwein im Glas",
},
]}
@@ -202,7 +202,7 @@ export default function HomePage() {
role: "Marketing Manager",
company: "München",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg?_wi=1",
imageAlt: "Portrait von Sarah Müller",
},
{
@@ -211,7 +211,7 @@ export default function HomePage() {
role: "Geschäftsführer",
company: "Stuttgart",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1",
imageAlt: "Portrait von Martin Schmidt",
},
{
@@ -220,7 +220,7 @@ export default function HomePage() {
role: "Architektin",
company: "Berlin",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg?_wi=1",
imageAlt: "Portrait von Julia Wagner",
},
{
@@ -238,7 +238,7 @@ export default function HomePage() {
role: "Professor",
company: "Heidelberg",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg?_wi=2",
imageAlt: "Portrait von Klaus Richter",
},
{
@@ -247,7 +247,7 @@ export default function HomePage() {
role: "Rechtsanwältin",
company: "Ulm",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-model-student-teenage-girl-dressed-up-jeans-cafe-holds-coffee-tea-cup-her-hands_231208-5219.jpg?_wi=2",
imageAlt: "Portrait von Emma Hoffmann",
},
]}