diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c388421..6c3c0dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } 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 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Hôtel Henkous Colombes – Affordable Comfort Near Paris", description: "Welcome to Hôtel Henkous in Colombes, Hauts-de-Seine. Affordable, comfortable rooms with warm hospitality. Easy access to Paris & La Défense. Book your stay today.", keywords: "hotel colombes, paris suburb accommodation, affordable hotel france, colombes hotel, business hotel paris region", metadataBase: new URL("https://hotelhenkouscolombes.com"), - alternates: { - canonical: "https://hotelhenkouscolombes.com" - }, - openGraph: { - title: "Hôtel Henkous – Your Comfort in Colombes", description: "Experience warm hospitality and comfortable accommodations in Colombes, just outside Paris. Personalized service, convenient location, great value.", url: "https://hotelhenkouscolombes.com", siteName: "Hôtel Henkous", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/lifestyle-person-decorating-their-front-door_23-2150562547.jpg", alt: "Hôtel Henkous Colombes – Welcoming Entrance" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Hôtel Henkous – Affordable Comfort in Colombes", description: "Discover warm hospitality and comfortable rooms near Paris. Book your stay at Hôtel Henkous today.", images: ["http://img.b2bpic.net/free-photo/lifestyle-person-decorating-their-front-door_23-2150562547.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Hôtel Henkous – Classic Comfort in Colombes", description: "Experience authentic French hospitality just outside Paris. Charming hotel in Colombes with warm service and affordable comfort."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +