diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4400fae..bf4d1aa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,66 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TrendCart - Premium Fashion, Electronics & Accessories Shopping", - description: "Shop premium fashion, electronics, and accessories on TrendCart. Discover trending products, exclusive deals, fast shipping, and secure checkout.", - keywords: "shopping, fashion, electronics, accessories, e-commerce, online store, trending products", - metadataBase: new URL("https://trendcart.com"), - alternates: { - canonical: "https://trendcart.com", - }, - openGraph: { - title: "TrendCart - Premium Shopping", - description: "Discover premium products with exclusive deals and fast shipping.", - siteName: "TrendCart", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/stylish-asian-senior-woman-going-shopping-wearing-trendy-clothes-sunglasses-holding-store-bags-w_1258-158236.jpg", - alt: "TrendCart Premium Shopping", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TrendCart - Shop Premium Products", - description: "Explore trending fashion, electronics, and accessories with exclusive deals.", - images: ["http://img.b2bpic.net/free-photo/stylish-asian-senior-woman-going-shopping-wearing-trendy-clothes-sunglasses-holding-store-bags-w_1258-158236.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TrendCart - Premium Shopping", description: "Discover premium fashion & electronics with exclusive deals and fast shipping"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}