From b626b073a8f9019c4908cc3aca2340b139e6bd18 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:44:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0ef991..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,60 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Web Design Agency | Professional Website Design Services", description: "Custom web design, development, and branding services for businesses. Transform your online presence with our expert team of designers and developers.", keywords: "web design agency, website design, web development, responsive design, brand design, e-commerce, digital design", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Webild Studio - Web Design Agency", description: "Professional web design and development services for businesses of all sizes.", url: "https://webild-studio.com", siteName: "Webild Studio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png", alt: "Webild Studio - Web Design Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webild Studio - Professional Web Design", description: "Transform your vision into digital reality with expert web design services.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +