7 Commits

Author SHA1 Message Date
ca7af6b834 Update src/app/page.tsx 2026-03-04 02:05:07 +00:00
36cf80b12c Merge version_2 into main
Merge version_2 into main
2026-03-04 02:02:37 +00:00
3a31224303 Update src/app/page.tsx 2026-03-04 02:02:33 +00:00
6f4e9cac7c Update src/app/layout.tsx 2026-03-04 02:02:32 +00:00
3e4121f6e6 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:01:16 +00:00
5e5ea74bd3 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:00:15 +00:00
86613f9915 Merge version_1 into main
Merge version_1 into main
2026-03-04 01:58:49 +00:00
2 changed files with 13 additions and 45 deletions

View File

@@ -1,53 +1,22 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: "Windy Queens Hostel | Budget Backpacker Accommodation", description: "Experience authentic backpacker community at Windy Queens Hostel. Comfortable dorms, private rooms, daily events, and rooftop bar in the heart of the city. Book your adventure today!", keywords: "hostel, backpackers, budget accommodation, social hostel, traveler community, city hostel", metadataBase: new URL("https://windyqueenshostel.com"),
alternates: {
canonical: "https://windyqueenshostel.com"
},
openGraph: {
title: "Windy Queens Hostel | Where Travelers Meet", description: "Join thousands of backpackers at Windy Queens. Great rooms, vibrant community, and unforgettable memories await.", url: "https://windyqueenshostel.com", siteName: "Windy Queens Hostel", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-young-people-hostel_23-2150446735.jpg", alt: "Windy Queens Hostel - Your Backpacker Paradise"
}
]
},
twitter: {
card: "summary_large_image", title: "Windy Queens Hostel", description: "The ultimate backpacker hostel experience. Social, comfortable, and fun!", images: ["http://img.b2bpic.net/free-photo/front-view-young-people-hostel_23-2150446735.jpg"]
},
robots: {
index: true,
follow: true
}
title: 'Windy Queens Hostel',
description: 'Experience authentic connections, comfortable stays, and unforgettable memories at Windy Queens Hostel in the heart of the city.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -99,7 +99,7 @@ export default function LandingPage() {
<div id="rooms" data-section="rooms">
<ProductCardThree
title="Our Room Options"
description="Choose from our range of comfortable, well-appointed rooms designed for every budget and preference."
description="Starting at $20/night Budget-Friendly Options Available. Choose from our range of comfortable, well-appointed rooms designed for every budget and preference."
tag="Accommodations"
tagIcon={Bed}
tagAnimation="blur-reveal"
@@ -209,8 +209,8 @@ export default function LandingPage() {
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="Enter your email for special offers"
buttonText="Get Updates"
termsText="We'll send you exclusive deals and hostel updates. Unsubscribe anytime."
buttonText="Book a Room"
termsText="By clicking Book a Room, you're confirming your interest in our accommodations and will receive a booking confirmation email with available dates and rates."
/>
</div>