Merge version_1 into main #1
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -83,7 +83,7 @@ export default function HomePage() {
|
||||
{ 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=1"
|
||||
imageAlt="Sunrise over Caspian Sea from Victoria Hotel"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Victoria Hotel Hero Section"
|
||||
@@ -98,7 +98,7 @@ export default function HomePage() {
|
||||
description="Open your window and see the Caspian, the waterfront, and fresh sea air."
|
||||
subdescription="Victoria is a place to spend a night or enjoy a quiet getaway by the water. First-line waterfront location, spacious rooms, and sea views make every moment unforgettable."
|
||||
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=1"
|
||||
imageAlt="Luxury room with panoramic Caspian Sea view"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -120,7 +120,7 @@ export default function HomePage() {
|
||||
id: "feature-1",
|
||||
title: "First Line",
|
||||
tags: ["Waterfront is just across the street"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912524.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912524.jpg?_wi=1",
|
||||
imageAlt: "Beachfront location at Victoria Hotel"
|
||||
},
|
||||
{
|
||||
@@ -134,14 +134,14 @@ export default function HomePage() {
|
||||
id: "feature-3",
|
||||
title: "Sea View",
|
||||
tags: ["Best rooms with panoramic views"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-hotel-swimming-pool-resort_74190-1680.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-hotel-swimming-pool-resort_74190-1680.jpg?_wi=1",
|
||||
imageAlt: "Sunrise view from hotel room"
|
||||
},
|
||||
{
|
||||
id: "feature-4",
|
||||
title: "Hospitable Staff",
|
||||
tags: ["Always ready to help"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/receptionist-elegant-suit-work-with-customer_23-2149714431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/receptionist-elegant-suit-work-with-customer_23-2149714431.jpg?_wi=1",
|
||||
imageAlt: "Professional hotel service"
|
||||
}
|
||||
]}
|
||||
@@ -164,21 +164,21 @@ export default function HomePage() {
|
||||
id: "room-standard",
|
||||
name: "Standard",
|
||||
price: "from 8,500 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_74190-2088.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_74190-2088.jpg?_wi=1",
|
||||
imageAlt: "Standard room at Victoria Hotel"
|
||||
},
|
||||
{
|
||||
id: "room-deluxe",
|
||||
name: "Deluxe",
|
||||
price: "from 12,500 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-loungers-with-parasol-close-pool_1203-1741.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-loungers-with-parasol-close-pool_1203-1741.jpg?_wi=1",
|
||||
imageAlt: "Deluxe room with ocean view"
|
||||
},
|
||||
{
|
||||
id: "room-suite",
|
||||
name: "Suite",
|
||||
price: "from 15,000 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lonely-bride-sits-bed-large-hotel-room_8353-7215.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lonely-bride-sits-bed-large-hotel-room_8353-7215.jpg?_wi=1",
|
||||
imageAlt: "Premium suite with panoramic view"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -78,7 +78,7 @@ export default function RoomsPage() {
|
||||
{ text: "Learn More", href: "/about" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
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=2"
|
||||
imageAlt="Luxury room with panoramic Caspian Sea view"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Rooms Page Hero Section"
|
||||
@@ -99,21 +99,21 @@ export default function RoomsPage() {
|
||||
id: "room-standard",
|
||||
name: "Standard Room",
|
||||
price: "from 8,500 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_74190-2088.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_74190-2088.jpg?_wi=2",
|
||||
imageAlt: "Standard room at Victoria Hotel"
|
||||
},
|
||||
{
|
||||
id: "room-deluxe",
|
||||
name: "Deluxe Room",
|
||||
price: "from 12,500 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-loungers-with-parasol-close-pool_1203-1741.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sun-loungers-with-parasol-close-pool_1203-1741.jpg?_wi=2",
|
||||
imageAlt: "Deluxe room with ocean view"
|
||||
},
|
||||
{
|
||||
id: "room-suite",
|
||||
name: "Premium Suite",
|
||||
price: "from 15,000 ₸",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lonely-bride-sits-bed-large-hotel-room_8353-7215.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lonely-bride-sits-bed-large-hotel-room_8353-7215.jpg?_wi=2",
|
||||
imageAlt: "Premium suite with panoramic view"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -79,7 +79,7 @@ export default function ServicesPage() {
|
||||
{ text: "View Rooms", href: "/rooms" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/receptionist-elegant-suit-work-with-customer_23-2149714431.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/receptionist-elegant-suit-work-with-customer_23-2149714431.jpg?_wi=2"
|
||||
imageAlt="Professional hotel service"
|
||||
mediaAnimation="slide-up"
|
||||
ariaLabel="Services Page Hero Section"
|
||||
@@ -107,14 +107,14 @@ export default function ServicesPage() {
|
||||
id: "service-2",
|
||||
title: "High-Speed WiFi",
|
||||
tags: ["Stay connected throughout your stay"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-hotel-swimming-pool-resort_74190-1680.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxury-hotel-swimming-pool-resort_74190-1680.jpg?_wi=2",
|
||||
imageAlt: "Luxury hotel amenities"
|
||||
},
|
||||
{
|
||||
id: "service-3",
|
||||
title: "Airport Transfers",
|
||||
tags: ["Convenient transportation service"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912524.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912524.jpg?_wi=2",
|
||||
imageAlt: "Hotel entrance and services"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user