From 8dd9dcda75e7ea55d1e5936cae210ce573f6d490 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:50:40 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1407 +------------------------------------------- 1 file changed, 17 insertions(+), 1390 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ca7cb22..192c66f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,29 @@ import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/globals.css"; +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "5G Private Networks for Enterprise Infrastructure | Turnkey Solutions", - description: "Enterprise-grade 5G private network solutions for manufacturing, healthcare, transportation, and municipalities. Neutral host architecture, turnkey deployment, mission-critical reliability.", - keywords: "5G private network, neutral host, manufacturing connectivity, mission-critical infrastructure, smart cities, industrial IoT", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "5G Private Networks for Enterprise Infrastructure", - description: "Enterprise-grade 5G private network solutions for manufacturing, healthcare, transportation, and municipalities. Neutral host architecture, turnkey deployment.", - type: "website", - siteName: "5G Private Networks", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ANc3ZzfZDlaGGjgYO9S7sd32tn/a-modern-5g-private-network-infrastructu-1772919031454-387846af.png", - alt: "5G private network infrastructure", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "5G Private Networks for Enterprise Infrastructure", - description: "Enterprise-grade 5G private network solutions with neutral host flexibility. Turnkey deployment for mission-critical sectors.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ANc3ZzfZDlaGGjgYO9S7sd32tn/a-modern-5g-private-network-infrastructu-1772919031454-387846af.png", - ], - }, -}; - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); + title: "5G Private Networks", description: "Enterprise 5G private network solutions and deployment services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +