diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 62fbaa8..3a6959a 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 { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "SilverPro - Premium 3D Silver Products & Luxury Design", description: "Discover luxury silver products with immersive 3D animations. Fully responsive design with premium UI/UX. Experience elegance and innovation.", keywords: "silver products, luxury design, 3D animation, responsive website, premium UI/UX, metallic accessories", metadataBase: new URL("https://silverpro.com"), - openGraph: { - title: "SilverPro - Luxury Silver Innovation", description: "Experience premium silver products with cutting-edge 3D visualization and responsive design.", type: "website", siteName: "SilverPro", images: [ - { - url: "http://img.b2bpic.net/free-photo/brushed-metal-texture-with-diagonal-sheen_84443-75019.jpg", alt: "SilverPro luxury collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "SilverPro - Premium Silver Products", description: "Luxury 3D-animated silver products with responsive design and premium UI/UX.", images: ["http://img.b2bpic.net/free-photo/brushed-metal-texture-with-diagonal-sheen_84443-75019.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "SilverPro - Premium Silver Products", description: "Experience luxury redefined with premium silver products crafted with precision and elegance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}