diff --git a/src/app/hotel/page.tsx b/src/app/hotel/page.tsx index 29a6a6e..5b2a80b 100644 --- a/src/app/hotel/page.tsx +++ b/src/app/hotel/page.tsx @@ -188,7 +188,7 @@ export default function HotelPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg" + imageSrc="http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg?_wi=2" imageAlt="luxury hotel interior elegant design" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..11f4b08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Alexandra Hotel - Luxury Accommodations, Wellness & Sports", + description: "Experience luxury at Alexandra Hotel. Discover world-class wellness center, sports facilities, fine dining, and elegant accommodations. Book your perfect getaway today.", + keywords: "luxury hotel, wellness spa, sports center, accommodations, resort, fine dining, vacation", + metadataBase: new URL("https://www.alexandrahotel.sk/"), + alternates: { + canonical: "https://www.alexandrahotel.sk/", + }, + openGraph: { + title: "Alexandra Hotel - Your Luxury Destination", + description: "Discover world-class amenities including wellness center, sports facilities, and luxury accommodations.", + siteName: "Alexandra Hotel", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg", + alt: "Alexandra Hotel Luxury Interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Alexandra Hotel - Luxury Accommodations", + description: "Experience luxury with premium wellness, sports, and accommodations.", + images: ["http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}