diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fce5f30..c5fe001 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +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: "BACISIZ TR - Underground Street Culture Movement", description: "Where legends write their own rules. Join the global street culture movement. No limits, no excuses—just raw power.", keywords: "street culture, underground movement, cyberpunk, digital rebellion, community", openGraph: { - title: "BACISIZ TR - Underground Street Culture Movement", description: "Where legends write their own rules. No limits, no excuses—just raw power and digital street culture.", url: "https://bacisiztr.com", siteName: "BACISIZ TR", type: "website"}, - twitter: { - card: "summary_large_image", title: "BACISIZ TR - Underground Street Culture Movement", description: "Join the movement. No limits, no excuses. Raw power. Digital rebellion."}, - robots: { - index: true, - follow: true, - }, -}; + title: "BACISIZ TR - Underground Movement", description: "Where Legends Write Their Own Rules. Join the digital street culture movement."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}