From 0fa4f0042176a562fadd85d5a6cf1b66b4048fe4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:52:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 62 +++++++++++----------------------------------- 1 file changed, 15 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a70446a..a46831f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AURUM - Premium Gold Trading in UAE | Buy & Sell Gold", - description: "Professional gold trading platform for clients and partners in the UAE. Secure, transparent, and competitive precious metal trading with vault storage and fast delivery.", - keywords: "gold trading UAE, buy gold Dubai, sell gold, precious metals, gold bullion, trading platform", - metadataBase: new URL("https://aurum-gold.ae"), - alternates: { - canonical: "https://aurum-gold.ae", - }, - openGraph: { - title: "AURUM - Premium Gold Trading Platform UAE", - description: "Trusted gold trading solutions for businesses and investors across the Middle East", - url: "https://aurum-gold.ae", - siteName: "AURUM Gold Trading", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-shot-pile-shiny-gold-coins-bars_181624-60854.jpg", - alt: "AURUM Gold Trading - Premium Bullion", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "AURUM - Gold Trading UAE", - description: "Professional precious metal trading platform", - images: ["http://img.b2bpic.net/free-photo/closeup-shot-pile-shiny-gold-coins-bars_181624-60854.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AURUM - Premium Gold Trading Solutions", description: "Secure, transparent, and professional precious metal trading with competitive rates across the UAE."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +