From 6fabf0285028cdc8d0fa0db5ed90be113d228f5e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:52:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1435 +------------------------------------------- 1 file changed, 8 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 411fa01..b2a4b74 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Outfit } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Langreiter - Premium German Telecom Solutions", - description: "Expert mobile, fire, and internet communication solutions for challenging environments. German engineering precision for basements, parking garages, and concrete buildings.", - keywords: "telecommunications, mobile communication, fire systems, internet infrastructure, German engineering, signal solutions, basement coverage, parking garage connectivity", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Langreiter - Reliable Communication Solutions", - description: "Professional telecommunications for every environment. Mobile, fire systems, and internet infrastructure engineered for reliability.", - type: "website", - siteName: "Langreiter GmbH & Co. KG", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfeHsK11qzLNNhUMgX9OU4AhXH/a-modern-parking-garage-interior-with-ad-1772988080880-6e8f8cfc.png", - alt: "Professional telecommunications infrastructure", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Langreiter - German Telecom Excellence", - description: "Premium communication solutions for challenging environments. Professional reliability you can trust.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfeHsK11qzLNNhUMgX9OU4AhXH/a-modern-parking-garage-interior-with-ad-1772988080880-6e8f8cfc.png", - ], - }, -}; + title: "Langreiter - German Telecommunications Excellence", description: "Reliable communication solutions for mobile, fire, and internet infrastructure in challenging environments. German engineering precision."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -