From 2fc90b25f97be0ae7c1d28342695df80b8b1d2a0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 06:21:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++++++--------------------------------- 1 file changed, 12 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 05f05db..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,28 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Marble Export | Global Quality Stone Supplier", description: "World-class marble export sourcing premium stones for architects, designers, and contractors. 30+ years of excellence in luxury marble selection.", keywords: "marble export, premium marble, natural stone, marble supplier, architectural marble, luxury stone", openGraph: { - title: "Premium Marble Export | Global Quality Stone Supplier", description: "World-class marble export sourcing premium stones for architects, designers, and contractors.", type: "website", siteName: "Marble Export" - }, - 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} +