From cb87991a4469c8437ed310cb2f323d192dd6fb53 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:39:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e0b254..91bdc64 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers. Watch engaging content on growth, creativity, and digital trends. New videos every Wednesday & Friday.", keywords: "YouTube channel, content creator, video content, subscribe, community", metadataBase: new URL("https://creatorhub.channel"), - alternates: { - canonical: "https://creatorhub.channel"}, - openGraph: { - title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers and grow with our community.", url: "https://creatorhub.channel", siteName: "CreatorHub", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcDuZ1vUNrOjv0jXMLV72cHhQb/a-dynamic-youtube-channel-hero-banner-sh-1772883270520-da706ce5.png", alt: "A dynamic YouTube channel hero banner showing a content creator in a modern studio setup with profes"}, - ], - }, - twitter: { - card: "summary_large_image", title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers and grow with our community.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcDuZ1vUNrOjv0jXMLV72cHhQb/a-dynamic-youtube-channel-hero-banner-sh-1772883270520-da706ce5.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CreatorHub - Grow Your YouTube Channel", description: "Build meaningful connections with your audience. Share your best content, showcase your growth, and inspire your community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}