From 596f8100465368412830ac7bef4e73e7a9b0f756 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:56:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 7 insertions(+), 1404 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 800a0e8..53bc1b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Manrope } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const manrope = Manrope({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Modern Web Design & Development Services | Webild", description: "Build stunning, responsive websites with Webild. Expert web design, development, and optimization services for businesses of all sizes.", keywords: "web design, web development, responsive website, modern design, digital agency", metadataBase: new URL("https://webild.com"), - alternates: { - canonical: "https://webild.com"}, - openGraph: { - title: "Modern Web Design & Development | Webild", description: "Transform your digital presence with expert web design and development services. Responsive, performant, and beautiful websites.", siteName: "Webild", type: "website"}, - twitter: { - card: "summary_large_image", title: "Modern Web Design & Development | Webild", description: "Build amazing digital experiences with responsive web design and cutting-edge development."}, -}; + title: "Webild - Modern Web Design & Development", description: "Transform your ideas into stunning, responsive websites with cutting-edge design and seamless functionality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -