From 5593439e14ac59c35ef60baf257a7a29c59231d5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:52:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ead29f..e675870 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,17 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Modern E-Commerce Store - Premium Products & Fast Shipping", - description: "Shop our curated collection of premium products with fast shipping, secure checkout, and 24/7 customer support. Discover your favorites today!", - keywords: "online shopping, ecommerce, products, buy online, fast shipping, quality merchandise", - robots: { - index: true, - follow: true, - }, - openGraph: { - type: "website", - title: "Modern E-Commerce Store - Shop Premium Products", - description: "Discover exceptional products at unbeatable prices. Free shipping on orders over $50!", - siteName: "Storefront", - images: [ - { - url: "http://img.b2bpic.net/free-photo/person-setting-up-online-store-uploading-products-laptop_73899-54387.jpg", - alt: "Premium e-commerce shopping platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Modern E-Commerce Store", - description: "Shop quality products with fast shipping and excellent customer service", - images: [ - "http://img.b2bpic.net/free-photo/person-setting-up-online-store-uploading-products-laptop_73899-54387.jpg", - ], - }, -}; + title: "Storefront - Premium Products Online", description: "Shop our exclusive collection of high-quality items with exceptional customer service and fast shipping."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}