From efccd62a466f60021dc9bda0ae04734206381e53 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:38:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a68fd5e..70e5448 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Webild - Web Design & IT Services for Small Business", description: "Expert web design, development, and IT support for small businesses. Transform your digital presence with Webild.", keywords: "web design, web development, IT support, small business websites, digital strategy", openGraph: { - title: "Webild - Web Design & IT Solutions", description: "Professional web design and IT services tailored for small businesses.", type: "website", siteName: "Webild", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png", alt: "Webild web design services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Webild - Web Design & IT Services", description: "Transform your digital presence with expert web design and IT support", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUKxbRjUw7DsFW8ZsVhrJvJfzc/a-modern-sleek-web-design-agency-dashboa-1772642023082-09a2c494.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webild - Web Design & IT Services", description: "Expert web design and IT solutions for small businesses"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}