diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f157000..540b103 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ShopHub | Premium Tech Products & Gadgets", description: "Discover premium tech products including smartphones, laptops, headphones, and gadgets. Shop with confidence on ShopHub - trusted by 100K+ customers worldwide.", keywords: "tech products, smartphones, laptops, gadgets, electronics, online shopping, e-commerce", metadataBase: new URL("https://shophub.example.com"), - alternates: { - canonical: "https://shophub.example.com"}, - openGraph: { - title: "ShopHub | Premium Tech Products & Gadgets", description: "Discover premium tech products including smartphones, laptops, headphones, and gadgets. Shop with confidence on ShopHub - trusted by 100K+ customers worldwide.", url: "https://shophub.example.com", siteName: "ShopHub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/flat-design-minimal-boutique-landing-page_23-2149301354.jpg", alt: "ShopHub Premium Tech Products"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ShopHub | Premium Tech Products & Gadgets", description: "Discover premium tech products. Shop with confidence on ShopHub - trusted by 100K+ customers.", images: ["http://img.b2bpic.net/free-vector/flat-design-minimal-boutique-landing-page_23-2149301354.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ShopHub - Premium Tech Products", description: "Discover premium tech products at unbeatable prices. Shop the latest smartphones, laptops, headphones, and more from trusted brands."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -