From 62d98de59c3f382c0bbabb90cde3cbb03ac65599 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:56:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 +------------------------------------------- 1 file changed, 11 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 13f0410..9da6ded 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webild | Creative Web Agency - Digital Excellence", description: "Transform your digital presence with Webild. We deliver innovative web design, development, and digital strategy for brands that lead.", keywords: "web agency, digital design, web development, creative services, digital transformation, UX design", metadataBase: new URL("https://webild.com"), - alternates: { - canonical: "https://webild.com"}, - openGraph: { - title: "Webild | Creative Web Agency", description: "Experience digital excellence with our award-winning creative agency.", url: "https://webild.com", siteName: "Webild", type: "website", images: [ - { - url: "https://webild.com/og-image.jpg", alt: "Webild Creative Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webild | Creative Web Agency", description: "Transform your digital presence with our creative solutions.", images: ["https://webild.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webild - Creative Agency", description: "Transform your digital presence with Webild's strategic creativity and technical excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -