From a1ec12ebbb19a32af60e4d805b363c7921a6b98e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 22:02:01 +0000 Subject: [PATCH 1/5] Update src/app/hotel/page.tsx --- src/app/hotel/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.49.1 From 518b82004a13b93381f96698adf0cd6acf234c69 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 22:02:02 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) 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}