diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..7aaee4e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,51 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } from "next/font/google"; -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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "YourChannel - Original Video Content", + description: "Discover inspiring videos on tutorials, creative stories, and industry insights. Join 500K+ subscribers in our thriving community.", + keywords: "YouTube channel, video content, tutorials, creative videos, video production", + openGraph: { + title: "YourChannel - Original Video Content", + description: "Discover inspiring videos on tutorials, creative stories, and industry insights.", + siteName: "YourChannel", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "YourChannel - Original Video Content", + description: "Join 500K+ subscribers discovering amazing video content", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +54,9 @@ export default function RootLayout({ return ( - + {children}