import type { Metadata } from "next"; import { Outfit } from "next/font/google"; import "./globals.css"; const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { 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, }: { children: React.ReactNode; }) { return (
{children}