diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5345149..5b9b228 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 "./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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nula | Streetwear & Vintage Fashion | Urban Drops & Authentic Pieces", description: "Discover curated streetwear collections and authentic vintage pieces. Shop limited drops, rare finds, and timeless essentials. Nula blends modern street style with vintage culture.", keywords: "streetwear, vintage fashion, urban clothing, limited drops, authentic vintage, street style", openGraph: { - title: "Nula - Where Streetwear Meets Vintage", description: "Curated urban fashion blending modern streetwear with authentic vintage pieces.", siteName: "Nula", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg", alt: "Nula streetwear and vintage collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nula - Streetwear & Vintage Fashion", description: "Discover curated streetwear drops and authentic vintage pieces.", images: ["http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Nula - Streetwear & Vintage Fashion", description: "Curated urban fashion blending modern streetwear aesthetics with authentic vintage pieces."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}