diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd35703..b06ffcb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1435 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "ShopHub - Online Shopping Made Easy", - description: "Shop millions of products with fast shipping and exceptional customer service. Discover amazing deals on electronics, fashion, home goods, and more.", - keywords: "online shopping, e-commerce, buy online, deals, discounts, free shipping", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "ShopHub - Online Shopping Made Easy", - description: "Discover amazing products and unbeatable deals on ShopHub. Fast shipping, trusted sellers, and exceptional customer service.", - type: "website", - siteName: "ShopHub", - images: [ - { - url: "http://img.b2bpic.net/free-vector/online-shopping-template-landing-page_23-2148795107.jpg", - alt: "ShopHub - Your Online Shopping Destination", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ShopHub - Online Shopping Made Easy", - description: "Shop millions of products with fast shipping and great deals.", - images: ["http://img.b2bpic.net/free-vector/online-shopping-template-landing-page_23-2148795107.jpg"], - }, -}; + title: "ShopHub - Your Online Shopping Destination", description: "Discover millions of products at great prices on ShopHub"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}