From 224ccdc5065cf039a54690a7509efce3507788a9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:11:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 66 +++++++++------------------------------------- 1 file changed, 13 insertions(+), 53 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c41be3c..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,28 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "EchoStore - Premium E-Commerce Platform | Quality Products", - description: "Discover exceptional products at unbeatable prices. Free shipping, secure checkout, 30-day guarantee. Shop 50,000+ happy customers' favorite store.", - keywords: "ecommerce, online store, shopping, products, quality, free shipping, secure checkout", - metadataBase: new URL("https://echostore.com"), - alternates: { - canonical: "https://echostore.com", - }, - openGraph: { - title: "EchoStore - Your Trusted Online Store", - description: "Discover exceptional products at unbeatable prices with free shipping and 30-day money-back guarantee.", - url: "https://echostore.com", - siteName: "EchoStore", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/online-shopping-web-shop-e-shopping-concept_53876-124856.jpg", - alt: "EchoStore - Modern E-Commerce Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "EchoStore - Premium E-Commerce Platform", - description: "Quality products, free shipping, secure checkout. Join 50,000+ happy customers.", - images: ["http://img.b2bpic.net/free-photo/online-shopping-web-shop-e-shopping-concept_53876-124856.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +