Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3a31224303 | |||
| 6f4e9cac7c | |||
| 3e4121f6e6 | |||
| 5e5ea74bd3 | |||
| 86613f9915 |
@@ -1,53 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Montserrat } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import { Inter } from "next/font/google";
|
import './globals.css';
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: 'Windy Queens Hostel',
|
||||||
alternates: {
|
description: 'Experience authentic connections, comfortable stays, and unforgettable memories at Windy Queens Hostel in the heart of the city.',
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -209,8 +209,8 @@ export default function LandingPage() {
|
|||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email for special offers"
|
inputPlaceholder="Enter your email for special offers"
|
||||||
buttonText="Get Updates"
|
buttonText="Book a Room"
|
||||||
termsText="We'll send you exclusive deals and hostel updates. Unsubscribe anytime."
|
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>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user