From fa2acc9b91e4349e0b98b95eed3de8bad9f6dea1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:28:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 +------------------------------------------- 1 file changed, 16 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f83238e..682570b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,31 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Antiqué Emporium | Authentic Antiques & Rare Collectibles", description: "Discover authentic antiques, vintage treasures, and rare collectibles. Expert authentication and curation of heritage pieces since 1985.", keywords: "antiques, vintage collectibles, rare items, antique jewelry, vintage furniture, collectibles marketplace", metadataBase: new URL("https://antiqueemporium.com"), - alternates: { - canonical: "https://antiqueemporium.com"}, - openGraph: { - title: "Antiqué Emporium | Timeless Treasures", description: "Handpicked antiques and vintage collectibles for discerning collectors worldwide.", url: "https://antiqueemporium.com", siteName: "Antiqué Emporium", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/classic-gold-clock-watch-bright-colorful-retro-interior-red-flowers_158538-12491.jpg", alt: "Antique collection showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Antiqué Emporium | Authentic Antiques", description: "Discover rare antiques and vintage collectibles curated by experts.", images: ["http://img.b2bpic.net/free-photo/classic-gold-clock-watch-bright-colorful-retro-interior-red-flowers_158538-12491.jpg"], - }, + title: 'Antiqué Emporium', + description: 'Discover timeless treasures and authentic antiques', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -