Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function LandingPage() {
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
buttons={[
|
||||
{ text: "Book Now", href: "#contact" },
|
||||
{ text: "Reserve Your Room", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user