From dfb71bed00583dd2d44aca413f912e4f96e88e62 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:11:14 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 84f0042..6624c29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import "./styles/variables.css"; 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Webuild - Web Development & Design Studio", description: "Custom websites and web applications built for growth. Expert web developers and designers creating digital solutions.", keywords: "web development, web design, custom websites, web applications, digital solutions", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Webuild - Web Development Studio", description: "Build stunning digital experiences with our expert team of developers and designers", type: "website", siteName: "Webuild", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.png", alt: "Webuild web development studio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webuild - Web Development & Design", description: "Expert web development and design services", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARPm31BXjFGO3byPj4ZVpdIhR8/a-modern-sleek-web-development-dashboard-1772552655029-c2724723.png"], - }, -}; + title: "Webuild - Web Development Studio", description: "Custom web development and design services for startups and businesses"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}