Update src/app/layout.tsx

This commit is contained in:
2026-03-04 02:14:33 +00:00
parent 2248a2bace
commit 9f013c96ce

View File

@@ -1,42 +1,20 @@
import type { Metadata } from "next";
import { Lato } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create stunning, responsive websites for your clients without coding. Scale your web design business with our all-in-one platform. Start free today.", keywords: "website builder, web design platform, sell websites, no-code builder, web hosting, drag and drop website creator", robots: {
index: true,
follow: true,
},
openGraph: {
title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create and sell beautiful websites without coding. Start your free trial today.", siteName: "WebSeller", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg", alt: "WebSeller Platform Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "WebSeller - Build & Sell Websites Effortlessly", description: "Create and sell beautiful websites without coding. Start your free trial today.", images: ["http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg"],
},
};
title: "WebSeller - Build & Sell Beautiful Websites", description: "Create stunning, responsive websites for your clients without coding. Launch faster, earn more, and scale your web design business."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1404,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}