Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-15 09:47:35 +00:00
5 changed files with 90 additions and 51 deletions

View File

@@ -128,7 +128,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg"
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg?_wi=5"
imageAlt="MD Umzüge Team"
logoText="MD Umzüge"
copyrightText="© 2025 MD Umzüge Berlin. Alle Rechte vorbehalten."

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "MD Umzüge Berlin - Professionelles Umzugsunternehmen",
description: "Umzugsunternehmen in Berlin für Privatumzüge, Firmenumzüge und Möbeltransporte. Schnell, zuverlässig und versichert. Kostenloses Angebot!",
keywords: "Umzugsunternehmen Berlin, Umzug Berlin, Möbeltransport Berlin, Umzugsfirma Berlin, Privatumzug, Firmenumzug",
metadataBase: new URL("https://md-umzuege-berlin.de"),
alternates: {
canonical: "https://md-umzuege-berlin.de",
},
openGraph: {
title: "MD Umzüge Berlin - Ihr Umzugspartner",
description: "Professionelle Umzugsleistungen in Berlin. Privatumzug, Firmenumzug, Möbeltransport - schnell, sorgfältig, versichert.",
url: "https://md-umzuege-berlin.de",
siteName: "MD Umzüge Berlin",
type: "website",
images: [
{
url: "https://md-umzuege-berlin.de/og-image.jpg",
alt: "MD Umzüge Berlin",
},
],
},
twitter: {
card: "summary_large_image",
title: "MD Umzüge Berlin",
description: "Professionelle Umzüge in Berlin - schnell, zuverlässig, versichert",
images: ["https://md-umzuege-berlin.de/twitter-image.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={`${publicSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -54,42 +54,42 @@ export default function ServicesPage() {
id: "service-1",
title: "Privatumzug",
tags: ["Wohnung", "Einfamilienhaus"],
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg?_wi=5",
imageAlt: "Privatumzug Service",
},
{
id: "service-2",
title: "Firmenumzug",
tags: ["Büro", "Betrieb"],
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg?_wi=4",
imageAlt: "Firmenumzug Service",
},
{
id: "service-3",
title: "Kleinumzug",
tags: ["Express", "Flexibel"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-people_23-2149103420.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-people_23-2149103420.jpg?_wi=2",
imageAlt: "Kleinumzug Service",
},
{
id: "service-4",
title: "Möbeltransport",
tags: ["Sicher", "Versichert"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg?_wi=5",
imageAlt: "Möbeltransport Service",
},
{
id: "service-5",
title: "Einpackservice",
tags: ["Professionell", "Sorgfältig"],
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg?_wi=3",
imageAlt: "Einpackservice",
},
{
id: "service-6",
title: "Möbelmontage",
tags: ["Installation", "Aufbau"],
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg?_wi=3",
imageAlt: "Möbelmontage Service",
},
]}
@@ -163,7 +163,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg"
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg?_wi=4"
imageAlt="MD Umzüge Team"
logoText="MD Umzüge"
copyrightText="© 2025 MD Umzüge Berlin. Alle Rechte vorbehalten."

View File

@@ -70,32 +70,32 @@ export default function HomePage() {
carouselItems={[
{
id: "carousel-1",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg?_wi=1",
imageAlt: "Professionelles Umzugsteam bei der Arbeit",
},
{
id: "carousel-2",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg?_wi=1",
imageAlt: "Wohnungsumzug in Berlin",
},
{
id: "carousel-3",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg?_wi=1",
imageAlt: "Büroumzug und Firmenrelokation",
},
{
id: "carousel-4",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg?_wi=1",
imageAlt: "Moderner Umzugstransporter",
},
{
id: "carousel-5",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg?_wi=1",
imageAlt: "Professioneller Verpackungsservice",
},
{
id: "carousel-6",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg?_wi=2",
imageAlt: "Möbeltransport Berlin",
},
]}
@@ -118,42 +118,42 @@ export default function HomePage() {
id: "service-1",
title: "Privatumzug",
tags: ["Wohnung", "Einfamilienhaus"],
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg?_wi=2",
imageAlt: "Privatumzug Service",
},
{
id: "service-2",
title: "Firmenumzug",
tags: ["Büro", "Betrieb"],
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg?_wi=2",
imageAlt: "Firmenumzug Service",
},
{
id: "service-3",
title: "Kleinumzug",
tags: ["Express", "Flexibel"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-people_23-2149103420.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-delivery-people_23-2149103420.jpg?_wi=1",
imageAlt: "Kleinumzug Service",
},
{
id: "service-4",
title: "Möbeltransport",
tags: ["Sicher", "Versichert"],
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg?_wi=2",
imageAlt: "Möbeltransport Service",
},
{
id: "service-5",
title: "Einpackservice",
tags: ["Professionell", "Sorgfältig"],
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-using-scotch-tape-pack-box-moving-out_23-2148647469.jpg?_wi=2",
imageAlt: "Einpackservice",
},
{
id: "service-6",
title: "Möbelmontage",
tags: ["Installation", "Aufbau"],
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg?_wi=1",
imageAlt: "Möbelmontage Service",
},
]}
@@ -223,7 +223,7 @@ export default function HomePage() {
category: "Schritt 1",
title: "Anfrage senden",
excerpt: "Füllen Sie unser einfaches Formular aus oder rufen Sie uns an. Wir benötigen nur grundlegende Informationen zu Ihrem Umzug.",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg?_wi=3",
imageAlt: "Anfrage senden",
authorName: "MD Umzüge",
authorAvatar: "http://img.b2bpic.net/free-vector/flat-design-oktoberfest-poster-template_23-2148600533.jpg",
@@ -234,7 +234,7 @@ export default function HomePage() {
category: "Schritt 2",
title: "Kostenloses Angebot",
excerpt: "Sie erhalten schnell ein transparentes und unverbindliches Angebot. Keine versteckten Kosten garantiert.",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg?_wi=3",
imageAlt: "Angebot erhalten",
authorName: "MD Umzüge",
authorAvatar: "http://img.b2bpic.net/free-vector/flat-design-oktoberfest-poster-template_23-2148600533.jpg",
@@ -245,7 +245,7 @@ export default function HomePage() {
category: "Schritt 3",
title: "Umzugstag",
excerpt: "Unser professionelles Team erledigt Ihren Umzug schnell, sorgfältig und zuverlässig. Sie können sich entspannen.",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg?_wi=3",
imageAlt: "Umzugstag",
authorName: "MD Umzüge",
authorAvatar: "http://img.b2bpic.net/free-vector/flat-design-oktoberfest-poster-template_23-2148600533.jpg",
@@ -294,37 +294,37 @@ export default function HomePage() {
{
id: "testimonial-1",
name: "Sarah Mueller",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-diplomatic-suit-looking-camera-standing-outside-front-startup-company-office-entrepreneur-man-working-marketing-presentation-outdoor-concept_482257-28140.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-diplomatic-suit-looking-camera-standing-outside-front-startup-company-office-entrepreneur-man-working-marketing-presentation-outdoor-concept_482257-28140.jpg?_wi=1",
imageAlt: "Sarah Mueller",
},
{
id: "testimonial-2",
name: "Petra Schmidt",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg?_wi=1",
imageAlt: "Petra Schmidt",
},
{
id: "testimonial-3",
name: "Michael Braun",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg?_wi=1",
imageAlt: "Michael Braun",
},
{
id: "testimonial-4",
name: "Julia Weiß",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-long-brown-hair-black-t-shirt-white-jacket_613910-8245.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-long-brown-hair-black-t-shirt-white-jacket_613910-8245.jpg?_wi=1",
imageAlt: "Julia Weiß",
},
{
id: "testimonial-5",
name: "Thomas Kühn",
imageSrc: "http://img.b2bpic.net/free-photo/emotional-young-bearded-man-making-silence-gesture-isolated-dark-wall_140725-97021.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/emotional-young-bearded-man-making-silence-gesture-isolated-dark-wall_140725-97021.jpg?_wi=1",
imageAlt: "Thomas Kühn",
},
{
id: "testimonial-6",
name: "Lisa Neumann",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=1",
imageAlt: "Lisa Neumann",
},
]}
@@ -356,7 +356,7 @@ export default function HomePage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg"
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg?_wi=1"
imageAlt="MD Umzüge Team"
logoText="MD Umzüge"
copyrightText="© 2025 MD Umzüge Berlin. Alle Rechte vorbehalten."

View File

@@ -66,32 +66,32 @@ export default function AboutPage() {
carouselItems={[
{
id: "about-carousel-1",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-woman-sealing-boxes_23-2147782405.jpg?_wi=4",
imageAlt: "Das Team von MD Umzüge bei der Arbeit",
},
{
id: "about-carousel-2",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-moving-new-home-unpacking-carboard-boxes-almost-done-moving_482257-24142.jpg?_wi=4",
imageAlt: "Erfolgreicher Kundeneinsatz",
},
{
id: "about-carousel-3",
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg?_wi=2",
imageAlt: "Unser engagiertes Team",
},
{
id: "about-carousel-4",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-delivery-man-with-package-list_23-2148590677.jpg?_wi=4",
imageAlt: "Moderne Transportflotte",
},
{
id: "about-carousel-5",
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/skilled-carpenter-worker-using-his-tools-wood_23-2148640333.jpg?_wi=2",
imageAlt: "Professionelle Montageservices",
},
{
id: "about-carousel-6",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/couple-unpacking-their-belongings_23-2149312725.jpg?_wi=3",
imageAlt: "Zufriedene Kunden",
},
]}
@@ -154,37 +154,37 @@ export default function AboutPage() {
{
id: "team-1",
name: "Marcus Weber",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-diplomatic-suit-looking-camera-standing-outside-front-startup-company-office-entrepreneur-man-working-marketing-presentation-outdoor-concept_482257-28140.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-diplomatic-suit-looking-camera-standing-outside-front-startup-company-office-entrepreneur-man-working-marketing-presentation-outdoor-concept_482257-28140.jpg?_wi=2",
imageAlt: "Marcus Weber - Gründer & Geschäftsführer",
},
{
id: "team-2",
name: "Katrin Hoffmann",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-professional-business-woman-suit_23-2148603020.jpg?_wi=2",
imageAlt: "Katrin Hoffmann - Operativ Leitung",
},
{
id: "team-3",
name: "Stefan König",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg?_wi=2",
imageAlt: "Stefan König - Umzugskoordinator",
},
{
id: "team-4",
name: "Simone Richter",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-long-brown-hair-black-t-shirt-white-jacket_613910-8245.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-long-brown-hair-black-t-shirt-white-jacket_613910-8245.jpg?_wi=2",
imageAlt: "Simone Richter - Kundensupport",
},
{
id: "team-5",
name: "Frank Dietrich",
imageSrc: "http://img.b2bpic.net/free-photo/emotional-young-bearded-man-making-silence-gesture-isolated-dark-wall_140725-97021.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/emotional-young-bearded-man-making-silence-gesture-isolated-dark-wall_140725-97021.jpg?_wi=2",
imageAlt: "Frank Dietrich - Logistik Manager",
},
{
id: "team-6",
name: "Elena Schmidt",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=2",
imageAlt: "Elena Schmidt - Qualitätskontrolle",
},
]}
@@ -195,7 +195,7 @@ export default function AboutPage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg"
imageSrc="http://img.b2bpic.net/free-photo/teamwork-meeting-with-business-people_23-2148825942.jpg?_wi=3"
imageAlt="MD Umzüge Team"
logoText="MD Umzüge"
copyrightText="© 2025 MD Umzüge Berlin. Alle Rechte vorbehalten."