diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 53dedc9..25fc55c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -85,21 +85,21 @@ export default function AboutPage() { id: "deluxe-room", name: "Deluxe Ocean View Suite", price: "$299/night", - imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/white-comfortable-pillow-blanket-bed-with-light-lamp_74190-12078.jpg?_wi=4", imageAlt: "Luxurious Deluxe Ocean View Suite with Modern Furnishings", }, { id: "presidential-suite", name: "Presidential Suite", price: "$599/night", - imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/wide-view-dining-hall-classic-design_114579-2224.jpg?_wi=3", imageAlt: "Exclusive Presidential Suite with Premium Amenities", }, { id: "garden-villa", name: "Garden Villa", price: "$449/night", - imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1203-3569.jpg?_wi=3", imageAlt: "Private Garden Villa with Spectacular Outdoor Space", }, ]} @@ -122,28 +122,28 @@ export default function AboutPage() { value: "50K+", title: "Happy Guests", description: "Satisfied travelers from over 120 countries", - imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-friends-taking-selfie-outdoors-medium-shot_23-2149003040.jpg?_wi=2", }, { id: "years", value: "15", title: "Years Excellence", description: "Operating at the highest hospitality standards", - imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/sunny-urban-landscape_23-2149504755.jpg?_wi=2", }, { id: "rooms", value: "250+", title: "Premium Rooms", description: "Luxury accommodations across all categories", - imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/pillow-bed_1203-9520.jpg?_wi=2", }, { id: "rating", value: "4.9/5", title: "Guest Rating", description: "Consistently excellent reviews and feedback", - imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/receptionists-elegant-suits-work-hours_23-2149714442.jpg?_wi=2", }, ]} /> diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..de8a416 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Luxe Haven - Luxury 5-Star Hotel Booking | Premium Accommodations", + description: "Book your luxury stay at Luxe Haven. Experience award-winning 5-star hospitality with stunning rooms, world-class amenities, and exceptional service. Premium hotel accommodations worldwide.", + keywords: "luxury hotel booking, 5-star resort, premium accommodations, hotel reservations, luxury getaway, fine dining hotel, spa resort, luxury vacation", + metadataBase: new URL("https://luxehavenhotels.com"), + alternates: { + canonical: "https://luxehavenhotels.com", + }, + openGraph: { + title: "Luxe Haven - Premium 5-Star Hotel Experience", + description: "Discover luxury redefined. Book your dream stay at Luxe Haven with stunning 3D virtual tours, exclusive amenities, and world-class service.", + url: "https://luxehavenhotels.com", + siteName: "Luxe Haven", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712925.jpg", + alt: "Luxe Haven Premium Hotel Lobby", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luxe Haven - Your Luxury Hotel Destination", + description: "Experience premium hospitality at Luxe Haven. Book luxury rooms, enjoy world-class amenities, and create unforgettable memories.", + images: ["http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712925.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}