diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dbab324..78fad81 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Heurgon Horloger & Joaillier | Luxury Watches & Jewelry Paris", description: "Discover exclusive luxury watches and fine jewelry at Heurgon, Paris's most prestigious jewelry boutique since 1865. Curated collections of Swiss timepieces and gemstones.", keywords: "luxury watches Paris, fine jewelry, Swiss watches, diamond rings, luxury boutique, Rue Faubourg Saint-Honoré", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Heurgon Horloger & Joaillier | Luxury Watches & Jewelry", description: "Experience 159 years of excellence. Exclusive luxury watches and fine jewelry collections in Paris.", type: "website", siteName: "Heurgon", images: [ - { - url: "http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-dressed-elegant-blue-suit-gray_158538-11083.jpg", alt: "Heurgon luxury watches and jewelry collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Heurgon Horloger & Joaillier | Luxury Watches & Jewelry", description: "Exclusive luxury watches and fine jewelry since 1865", images: ["http://img.b2bpic.net/free-photo/fashion-portrait-young-businessman-handsome-model-man-dressed-elegant-blue-suit-gray_158538-11083.jpg"], - }, -}; + title: "Heurgon - Luxury Watches & Fine Jewelry in Paris", description: "Discover exclusive luxury watches and fine jewelry at Heurgon Horloger & Joaillier on Rue du Faubourg Saint-Honoré in Paris. Est. 1865."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}