diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0bf6a32..21e91e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,77 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Lexend } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const lexend = Lexend({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Creatorsmafia - Empower Your Creative Journey", - description: "Join Creatorsmafia, the premier platform for creators. Collaborate, monetize, and grow your creative empire with advanced tools and a thriving community.", - keywords: "creator platform, monetization tools, content creation, collaboration, digital creators, creator community", - metadataBase: new URL("https://creatorsmafia.com"), - alternates: { - canonical: "https://creatorsmafia.com", - }, - openGraph: { - title: "Creatorsmafia - Empower Your Creative Journey", - description: "Unite, collaborate, and grow. Join thousands of creators building their empires.", - url: "https://creatorsmafia.com", - siteName: "Creatorsmafia", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/a-modern-professional-creator-platform-d-1772685461988-966d383d.png", - alt: "Creatorsmafia Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Creatorsmafia - Empower Your Creative Journey", - description: "Unite, collaborate, and grow on the premier creator platform.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVkqbMJQs227ysrI3tkqPUmNv6/a-modern-professional-creator-platform-d-1772685461988-966d383d.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Creatorsmafia", description: "Unite, collaborate, and grow with Creatorsmafia - the premier platform for creators."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}