From 721c1906d221f77bdcb19aeda46c1f01d71fd52a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 19:28:40 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 39 +++++++++++++++++++++++++++++++-------- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..c82e6f6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,45 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "CreatorHub - Fair Creator Monetization Platform", + description: "Creator-first social platform with verified identity, transparent monetization, and community trust. Earn from day one, manage multiple niche pages under one account.", + keywords: "creator platform, monetization, verified identity, Indian creators, fair earnings, short-form content, community", + openGraph: { + title: "CreatorHub - Fair Monetization. Real Identity. One Platform.", + description: "Join creators earning ₹50K+ monthly with verified trust and transparent payouts. No hidden cuts. One real identity, multiple creator pages.", + siteName: "CreatorHub", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "CreatorHub - Creator Economy Reimagined", + description: "Fair monetization platform for Indian creators. Verified identity, transparent payouts, multiple niche pages—all in one ecosystem.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +48,9 @@ export default function RootLayout({ return ( - + {children}