From 35d69def3749a7c48b3cf72e9f1d256b365e5b8b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:42:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 44 ++++++++------------------------------------ 1 file changed, 8 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b6efb5d..4851479 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { GeistSans } from "geist/font/sans"; 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Premium Product Showcase | Your Shop", description: "Explore our curated collection of premium products. Each item is carefully selected for quality, style, and craftsmanship.", keywords: "premium products, curated collection, luxury items, product showcase, quality goods", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Product Collection", description: "Discover our carefully curated selection of high-quality products.", siteName: "Your Shop", type: "website"}, -}; + title: "Your Shop - Premium Collection", description: "Explore our curated selection of premium products"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +