Update src/app/layout.tsx

This commit is contained in:
2026-03-11 06:09:17 +00:00
parent 5d11635e20
commit 79363cc000

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DrawbitStudio - Sell Digital Products & Earn Money",
description: "Join thousands of creators selling digital products on DrawbitStudio. Upload design kits, templates, and assets. Earn 85-95% commission. Start for free today.",
keywords: "digital marketplace, sell digital products, creative assets, design templates, indie creators, passive income, digital downloads",
metadataBase: new URL("https://drawbitstudio.com"),
alternates: {
canonical: "https://drawbitstudio.com",
},
openGraph: {
title: "DrawbitStudio - Modern Digital Marketplace for Creators",
description: "Sell your digital products and earn sustainable income. Premium platform for designers, developers, and creative professionals.",
url: "https://drawbitstudio.com",
siteName: "DrawbitStudio",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW1W82wqBVL6EqYM9zsFRwUPjB/a-cinematic-hero-section-showcasing-a-mo-1773209292824-88fa92b7.png",
alt: "DrawbitStudio marketplace platform",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "DrawbitStudio - Sell Digital Products",
description: "Join the modern marketplace for creative professionals. Sell digital assets and earn passive income.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AW1W82wqBVL6EqYM9zsFRwUPjB/a-cinematic-hero-section-showcasing-a-mo-1773209292824-88fa92b7.png"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}