diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e37f45c..52fe0c6 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 { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MH20 Records | Streetwear for the Culture", description: "Limited-edition hip-hop inspired streetwear. Authentic designs from underground culture. Shop exclusive drops, tees, hoodies, and caps.", keywords: "streetwear, hip-hop fashion, limited drops, urban apparel, underground culture, exclusive clothing", metadataBase: new URL("https://mh20records.com"), - alternates: { - canonical: "https://mh20records.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MH20 Records | Streetwear for the Culture", description: "Limited-edition hip-hop inspired streetwear. Authentic designs from underground culture.", url: "https://mh20records.com", siteName: "MH20 Records", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-girl-handsome-man-standing-night-street-illuminated-signboards-neon-lights_613910-20598.jpg", alt: "MH20 Records Streetwear Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MH20 Records | Streetwear for the Culture", description: "Limited-edition hip-hop inspired streetwear for the culture.", images: [ - "http://img.b2bpic.net/free-photo/beautiful-girl-handsome-man-standing-night-street-illuminated-signboards-neon-lights_613910-20598.jpg"], - }, -}; + title: "MH20 Records – Streetwear for the Culture", description: "Limited drops inspired by underground music and street creativity. Wear the rebellion."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}