From 3b060f86aa5fa0ddf5fdbd795ce9de90a41303be Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:38:51 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 12 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8496912..6db085b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Royal Wrist NG - Luxury Watches Nigeria", description: "Discover premium luxury watches from Switzerland's finest watchmakers. Royal Wrist offers exclusive timepieces with nationwide delivery in Nigeria.", keywords: "luxury watches, premium timepieces, Swiss watches, Nigeria, Abuja, wristwatch, chronograph", openGraph: { - title: "Royal Wrist NG - Luxury Watches Collection", description: "Premium luxury watches curated for discerning customers. Shop exclusive timepieces with nationwide delivery.", type: "website", siteName: "Royal Wrist NG", images: [ - { - url: "http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-casual-cloth-suit-with-accessories-hands_158538-9455.jpg", alt: "Royal Wrist Luxury Watches"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Royal Wrist NG - Luxury Watches", description: "Exclusive luxury watches from Switzerland. Premium timepieces available in Nigeria.", images: ["http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-casual-cloth-suit-with-accessories-hands_158538-9455.jpg"], - }, -}; + title: "Royal Wrist - Premium Luxury Watches", description: "Discover exclusive collection of luxury watches. Timeless elegance, exceptional craftsmanship. Premium timepieces from master watchmakers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - -