From c785d02eba4977790ca0f5d8f73db48c8a3a7b34 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 13:21:07 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6934fd5..fce5f30 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,49 @@ 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 inter = Inter({ subsets: ["latin"] }); +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"], +}); export const metadata: Metadata = { - title: "BACISIZ TR - Underground Movement", description: "Raw power and digital street culture. Join the movement that refuses to follow standards."}; + 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, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +