Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "StayHub - Book Your Perfect Accommodation in Karachi", description: "Discover and book verified guest houses, hotels, and vacation rentals in Karachi. Compare prices, read reviews, and find your ideal stay with StayHub.", keywords: "accommodation booking, hotels Karachi, guest houses, vacation rentals, travel booking, hotel reviews", openGraph: {
|
||||
title: "StayHub - Find Your Perfect Stay in Karachi", description: "Browse hundreds of verified accommodations with real guest reviews and competitive pricing.", type: "website", siteName: "StayHub", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/booking-hotel-reservation-travel-destination-concept_53876-121094.jpg", alt: "StayHub Accommodation Booking"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "StayHub - Find Your Perfect Stay", description: "Browse and book verified accommodations in Karachi with real reviews.", images: ["http://img.b2bpic.net/free-photo/booking-hotel-reservation-travel-destination-concept_53876-121094.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "StayHub - Find Your Perfect Accommodation", description: "Browse and book from hundreds of verified guest houses, hotels, and vacation rentals in Karachi."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -88,13 +88,16 @@ export default function AccommodationBooking() {
|
||||
<div id="listings" data-section="listings">
|
||||
<ProductCardTwo
|
||||
title="Featured Properties"
|
||||
description="Discover top-rated accommodations sorted by guest reviews and value. All properties verified and ready to book."
|
||||
description="All properties verified by real guests. Discover top-rated accommodations sorted by guest reviews and value. Ready to book."
|
||||
tag="Sort by Rating"
|
||||
tagIcon={Star}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
buttons={[
|
||||
{ text: "View All Properties", href: "#" }
|
||||
]}
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Karachi Guest House", name: "Basic Guesthouse with Shared Kitchen", price: "PKR 2,377", rating: 4,
|
||||
@@ -121,9 +124,6 @@ export default function AccommodationBooking() {
|
||||
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/cozy-bedroom-with-pendant-lamp-orchid-home-comfort_169016-70987.jpg?_wi=2", imageAlt: "Vacation Rental"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "View All Properties", href: "#" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user