Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-04 07:10:13 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}