Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca7af6b834 | |||
| 36cf80b12c | |||
| 3a31224303 | |||
| 6f4e9cac7c | |||
| 3e4121f6e6 | |||
| 5e5ea74bd3 | |||
| 86613f9915 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user