From a141e648db6f71df508b3f18d157ff02dc174434 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 07:10:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c019da9..803d7e1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +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({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Webild - Create Professional Websites Without Coding", description: "Build stunning, responsive websites in minutes with Webild. No coding required. Drag-and-drop editor, AI design suggestions, e-commerce, and more.", keywords: "website builder, website creator, no-code, drag-and-drop, web design, online presence", metadataBase: new URL("https://webild.com"), - alternates: { - canonical: "https://webild.com" - }, - openGraph: { - title: "Webild - Website Creator for Everyone", description: "Create professional websites without coding. AI-powered design tools and powerful features.", url: "https://webild.com", siteName: "Webild", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATDmsAmoSmC8kphlYJEC5yutfN/a-modern-sleek-website-interface-design--1772607919104-351426e3.png", alt: "Webild Website Creator Platform" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Webild - Create Websites Without Coding", description: "Build professional, responsive websites with drag-and-drop simplicity.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATDmsAmoSmC8kphlYJEC5yutfN/a-modern-sleek-website-interface-design--1772607919104-351426e3.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webild - Create Stunning Websites in Minutes", description: "Build beautiful, responsive websites without coding. Empower your creative vision with intuitive design tools."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}