From f9e6cc2bd88b52cc0b99d6a8929d68af26f64c37 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:17:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 72 +++++++++------------------------------------- 1 file changed, 13 insertions(+), 59 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 063d811..35cdb3c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,73 +1,28 @@ 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 { Geist, Geist_Mono } from "next/font/google"; 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Shaman Khail Store - Premium Luxury E-Commerce", - description: "Discover curated premium quality products including fashion, accessories, electronics and more at Shaman Khail Store. Luxury shopping with trusted service and fast delivery.", - keywords: "luxury store, premium products, fashion, accessories, electronics, online shopping, high-end retail", - metadataBase: new URL("https://shamankhailstore.com"), - alternates: { - canonical: "https://shamankhailstore.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Shaman Khail Store - Premium Luxury Collection", - description: "Experience luxury shopping with premium quality products and exceptional service.", - siteName: "Shaman Khail Store", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-woman-choosing-clothes-shop_23-2147786803.jpg", - alt: "Shaman Khail Store Premium Collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Shaman Khail Store - Premium Luxury", - description: "Discover curated premium quality products with trusted service.", - images: ["http://img.b2bpic.net/free-photo/side-view-woman-choosing-clothes-shop_23-2147786803.jpg"], - }, -}; + title: "Shaman Khail Store - Premium Luxury Products", description: "Discover curated collections of premium luxury products with trusted service at Shaman Khail Store."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +