From d2570d886ee465f6935b44f73401ca79160d657f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:51:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b5d000..151fdd3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ 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 { 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results. Custom web design, development, and ongoing support for growing companies.", keywords: "web design, website development, business websites, custom development, web solutions, professional sites", metadataBase: new URL("https://webuild.io"), - alternates: { - canonical: "https://webuild.io" - }, - openGraph: { - title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results. Custom web design, development, and ongoing support.", type: "website", siteName: "Webuild", url: "https://webuild.io", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEC1e7FnNfb63gwMfUVQiOqRR/a-modern-web-design-agency-website-showc-1772761064951-a229ae5a.png", alt: "Webuild - Web Design Agency" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Professional Web Design & Development Services | Webuild", description: "Build reliable business websites that drive results.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYEC1e7FnNfb63gwMfUVQiOqRR/a-modern-web-design-agency-website-showc-1772761064951-a229ae5a.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webuild - Professional Web Design & Development Agency", description: "Build reliable business websites that drive results. Professional web design and development solutions tailored to your business needs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +