From e545ad4a2482c69385e5645bb4fac12adf8a2687 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:28:19 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8d0148..25bab9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Creator Hub - Showcase Your Portfolio & Grow Your Audience", description: "Build your professional creative portfolio and connect with brands. Grow your audience with our portfolio platform for content creators.", keywords: "content creator portfolio, creative portfolio, creator platform, showcase portfolio", metadataBase: new URL("https://creatorhub.com"), - openGraph: { - title: "Creator Hub - Portfolio Platform for Content Creators", description: "Showcase your work and grow your audience as a content creator", url: "https://creatorhub.com", siteName: "Creator Hub", type: "website"}, - twitter: { - card: "summary_large_image", title: "Creator Hub - Your Creative Portfolio Platform", description: "Build and showcase your creative work"}, -}; + title: "Creator Hub", description: "Showcase your creative work and grow your audience"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}