From d58d1d8759cc5acaabad68efacc76c8e60b70abb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 16:31:53 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 43349b5..e1a85f2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -94,7 +94,7 @@ export default function AboutPage() { description="Victoria Hotel represents the pinnacle of oceanfront accommodation in Aktau." subdescription="Situated on the first line of the Caspian waterfront, Victoria Hotel offers an unparalleled combination of natural beauty and modern luxury. Our commitment to excellence ensures that every guest experiences the warmth of Kazakh hospitality paired with international service standards. From stunning sunrise views to our carefully curated amenities, every detail has been thoughtfully designed for your comfort and delight." icon={Waves} - imageSrc="http://img.b2bpic.net/free-photo/relax-bedroom_1150-17980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/relax-bedroom_1150-17980.jpg?_wi=3" imageAlt="Luxury room with panoramic Caspian Sea view" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 572a63c5db9939e5061e5cecdc7f76682e3d72e8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 16:31:54 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8666b89..ee711c5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -79,7 +79,7 @@ export default function ContactPage() { { text: "View Rooms", href: "/rooms" } ]} buttonAnimation="blur-reveal" - imageSrc="http://img.b2bpic.net/free-photo/fashion-portrait-young-pretty-stylish-woman-white-light-summer-dress-big-black-massive-boots-luxury-rich-villa_343596-1980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/fashion-portrait-young-pretty-stylish-woman-white-light-summer-dress-big-black-massive-boots-luxury-rich-villa_343596-1980.jpg?_wi=2" imageAlt="Sunrise over Caspian Sea from Victoria Hotel" mediaAnimation="slide-up" ariaLabel="Contact Page Hero Section" @@ -94,7 +94,7 @@ export default function ContactPage() { description="We ensure every guest enjoys the finest amenities and personalized service." subdescription="From the moment you arrive at Victoria Hotel, our dedicated team is committed to making your stay unforgettable. Experience the warmth of Kazakh hospitality combined with world-class luxury accommodations." icon={Waves} - imageSrc="http://img.b2bpic.net/free-photo/relax-bedroom_1150-17980.jpg" + imageSrc="http://img.b2bpic.net/free-photo/relax-bedroom_1150-17980.jpg?_wi=4" imageAlt="Luxury room with panoramic Caspian Sea view" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 61d65557eaf3e369deebbef23f82ab919bd5f9f1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 16:31:54 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72092eb..e5599ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,39 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); +export const metadata: Metadata = { + title: "Victoria Hotel — Luxury Oceanfront Stays in Aktau", + description: "Experience premium seaside accommodation at Victoria Hotel. First-line Caspian beachfront location with spacious rooms and stunning sea views.", + keywords: "отель Актау у моря, гостиница на набережной, отель вид Каспий, hotel aktau sea view, luxury beachfront accommodation, seaside resort kazakhstan", + metadataBase: new URL("https://victoriahotel.kz"), + alternates: { + canonical: "https://victoriahotel.kz", + }, + openGraph: { + title: "Victoria Hotel — Luxury Oceanfront Stays", + description: "First-line Caspian beachfront. Spacious rooms. Stunning sea views. Book your luxury stay.", + url: "https://victoriahotel.kz", + siteName: "Victoria Hotel", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/fashion-portrait-young-pretty-stylish-woman-white-light-summer-dress-big-black-massive-boots-luxury-rich-villa_343596-1980.jpg", + alt: "Victoria Hotel - Caspian Sea sunrise view" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Victoria Hotel — Luxury Oceanfront Stays", + description: "Experience premium seaside accommodation on the Caspian Sea.", + images: ["http://img.b2bpic.net/free-photo/fashion-portrait-young-pretty-stylish-woman-white-light-summer-dress-big-black-massive-boots-luxury-rich-villa_343596-1980.jpg"] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}