diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2cb9300..06cce54 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Muslin Hijabs - Luxury Modest Fashion", description: "Discover handcrafted muslin hijabs combining traditional craftsmanship with contemporary elegance. Premium quality, sustainable, and beautifully designed.", keywords: "muslin hijab, premium hijab, modest fashion, luxury headscarf, ethical fashion, handcrafted hijab", openGraph: { - title: "Muslin & Grace - Premium Hijabs", description: "Experience luxury and elegance with our handcrafted muslin hijabs. Premium quality and timeless style.", type: "website", siteName: "Muslin & Grace", images: [ - { - url: "http://img.b2bpic.net/free-photo/portrait-woman-beach-with-face-covered-by-veil_23-2149460624.jpg", alt: "Premium muslin hijab collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Muslin & Grace - Premium Hijabs", description: "Luxury muslin hijabs crafted with tradition and style", images: ["http://img.b2bpic.net/free-photo/portrait-woman-beach-with-face-covered-by-veil_23-2149460624.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Muslin & Grace - Premium Hijabs", description: "Luxurious handcrafted muslin hijabs combining traditional craftsmanship with contemporary elegance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}