diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0720de8..2c45b59 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Silver Jewelry & Design - Silver Crafted", - description: "Discover luxury silver jewelry and designs crafted with precision by master artisans. Explore our exquisite collection of contemporary and timeless silver pieces.", - keywords: "silver jewelry, luxury jewelry, handcrafted silver, artisan jewelry, premium designs, silver necklaces, silver bracelets, silver rings", - metadataBase: new URL("https://silvercrafted.com"), - alternates: { - canonical: "https://silvercrafted.com", - }, - openGraph: { - title: "Premium Silver Jewelry & Design - Silver Crafted", - description: "Discover luxury silver jewelry and designs crafted with precision by master artisans.", - siteName: "Silver Crafted", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Premium Silver Jewelry - Silver Crafted", - description: "Luxury handcrafted silver jewelry and designs by master artisans", - }, -}; + title: "Silver Crafted - Premium Silver Jewelry", description: "Discover our exquisite collection of premium silver jewelry and designs. Each piece is meticulously crafted with precision and artistry."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}