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 (
-
-