From 79363cc000426de295a945c71b9f1de9eebb9ef3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:09:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..38c0e35 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}