From bf1a352cdb0582a562423b89f6a1c9fd9d3b3f60 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:21:02 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1441 +------------------------------------------- 1 file changed, 12 insertions(+), 1429 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8067c7..d917b9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webuild - Custom Websites for Growing Businesses", - description: "Get a custom-built website that converts. We call, we build, we deliver results. Transparent pricing, proven process, and dedicated support.", - keywords: "web design, custom websites, web development, responsive design, small business websites, digital solutions", - metadataBase: new URL("https://webuild.com"), - alternates: { - canonical: "https://webuild.com", - }, - openGraph: { - title: "Webuild - Custom Websites for Growing Businesses", - description: "Transform your business with a custom-built website that converts.", - url: "https://webuild.com", - siteName: "Webuild", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afia5HzqZJcB1VJBhTMkDN695K/a-modern-web-design-studio-environment-w-1772990212181-72966083.png", - alt: "Webuild - Custom Website Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Webuild - Custom Websites for Growing Businesses", - description: "Transform your business with a custom-built website that converts.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afia5HzqZJcB1VJBhTMkDN695K/a-modern-web-design-studio-environment-w-1772990212181-72966083.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webuild - Custom Web Development & Design", description: "Transform your business with a custom-built website that converts. Expert web design and development services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -