diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ea04512..f4155c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +1,38 @@ import type { Metadata } from "next"; -import { Mulish, Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "ShopHub - Premium Products & Luxury Shopping", description: "Discover curated premium products, designer accessories, and luxury items. Shop with confidence at ShopHub with fast shipping and secure payments.", keywords: "online shopping, premium products, luxury goods, designer accessories, e-commerce", metadataBase: new URL("https://shophub.com"), - alternates: { - canonical: "https://shophub.com"}, - openGraph: { - title: "ShopHub - Premium Products & Luxury Shopping", description: "Discover curated premium products, designer accessories, and luxury items. Shop with confidence at ShopHub.", url: "https://shophub.com", siteName: "ShopHub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/futuristic-store-with-abstract-concept-architecture_23-2150862028.jpg", alt: "ShopHub - Premium Shopping Experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ShopHub - Premium Products & Luxury Shopping", description: "Discover curated premium products, designer accessories, and luxury items at ShopHub.", images: ["http://img.b2bpic.net/free-photo/futuristic-store-with-abstract-concept-architecture_23-2150862028.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ShopHub - Premium Products Online", description: "Discover curated premium products from our exclusive collection. Shop luxury fashion, accessories, and gadgets with confidence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +