diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4859ece..9921d6b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Horror Zociety | Premium Horror Brand & Community", description: "Experience authentic horror culture with Horror Zociety. Exclusive merchandise, curated content, and a passionate community for horror enthusiasts.", keywords: "horror brand, horror merchandise, horror community, gothic apparel, horror culture", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Horror Zociety | Embrace the Darkness", description: "Join the ultimate horror brand community. Exclusive merchandise, stories, and experiences celebrating the art of fear.", type: "website", siteName: "Horror Zociety", images: [ - { - url: "http://img.b2bpic.net/free-photo/fog-forest-autumn_250224-335.jpg", alt: "Horror Zociety - Dark atmospheric imagery"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Horror Zociety | Premium Horror Brand", description: "Experience authentic horror culture with exclusive merchandise and vibrant community.", images: ["http://img.b2bpic.net/free-photo/fog-forest-autumn_250224-335.jpg"], - }, -}; + title: "Horror Zociety", description: "Embrace the darkness. Explore the boundaries of terror with Horror Zociety—your exclusive horror brand community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}