|
|
|
|
@@ -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>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|