Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-09 13:25:57 +00:00

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Raleway } 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";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "M&W Handyparadies Smartphone Reparatur Magdeburg", description: "Schnelle, zuverlässige Smartphone-Reparaturen, Hermes Paketshop & RIA Geldtransfer in Magdeburg. Mehrsprachig unterstützt. Fairer Preis, professioneller Service.", keywords: "Smartphone Reparatur Magdeburg, Handy Reparatur, Hermes Paketshop, RIA Geldtransfer, Tech Service", openGraph: {
title: "M&W Handyparadies Dein zuverlässiger TechService", description: "Professionelle Smartphone-Reparaturen, Paketdienste und Geldtransfers in Magdeburg.", siteName: "M&W Handyparadies", type: "website"},
twitter: {
card: "summary_large_image", title: "M&W Handyparadies TechService in Magdeburg", description: "Schnelle Reparaturen. Fairen Preise. Freundlicher Service."},
robots: {
index: true,
follow: true,
},
};
title: "M&W Handyparadies - Magdeburgs zuverlässiger TechnikService", description: "Smartphone Reparaturen, Hermes Paketshop, RIA Geldtransfer in Magdeburg. Schnell • Freundlich • Professionell"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="de">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}