Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 08:19:10 +00:00
2 changed files with 17 additions and 72 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Royal Residency | Luxury Hotel & Banquet Hall in Gorakhpur",
description: "Premium 4-star hotel in Gorakhpur with 2400+ reviews. Luxury rooms, multi-cuisine restaurant, and elegant banquet hall for weddings and events. Book now!",
keywords: "hotel in Gorakhpur, luxury hotel, banquet hall, wedding venue, best hotel near railway station, restaurant Gorakhpur",
metadataBase: new URL("https://royalresidency.com"),
alternates: {
canonical: "https://royalresidency.com",
},
openGraph: {
title: "Royal Residency | Luxury Hotel & Banquet Hall",
description: "Experience luxury comfort and world-class hospitality at Royal Residency in Gorakhpur. Premier rooms, fine dining, and banquet facilities.",
url: "https://royalresidency.com",
siteName: "Royal Residency",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/abu-dhabi-uae-march-16-emirates-palace-hotel-march-16-2012-emirates-palace-is-luxurious-most-expensive-7-star-hotel-designed-by-renowned-architect-john-elliott-riba_158595-1971.jpg",
alt: "Royal Residency Luxury Hotel",
},
],
},
twitter: {
card: "summary_large_image",
title: "Royal Residency | Luxury Hotel Gorakhpur",
description: "4.0⭐ rated luxury hotel with premium rooms, restaurant, and banquet facilities. 2400+ satisfied guests. Book your stay today!",
images: ["http://img.b2bpic.net/free-photo/abu-dhabi-uae-march-16-emirates-palace-hotel-march-16-2012-emirates-palace-is-luxurious-most-expensive-7-star-hotel-designed-by-renowned-architect-john-elliott-riba_158595-1971.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Royal Residency | Luxury Hotel in Gorakhpur", description: "Experience premium hospitality at Royal Residency, a luxury hotel in Gorakhpur with spacious rooms, multi-cuisine restaurant, and elegant banquet facilities."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -88,15 +88,15 @@ export default function HomePage() {
useInvertedBackground={false}
features={[
{
title: "Free WiFi", description: "High-speed internet in all rooms and common areas", bentoComponent: "icon-info-cards", items: [
{ icon: Wifi, label: "Speed", value: "100 Mbps" },
{ icon: Shield, label: "Security", value: "Encrypted" },
title: "24/7 Room Service", description: "Always available to serve your needs round the clock", bentoComponent: "icon-info-cards", items: [
{ icon: Phone, label: "Contact", value: "Anytime" },
{ icon: Clock, label: "Response", value: "Quick" },
],
},
{
title: "Free Parking", description: "Secure parking for your vehicles with 24/7 surveillance", bentoComponent: "icon-info-cards", items: [
{ icon: ParkingCircle, label: "Spaces", value: "50+" },
{ icon: Camera, label: "Security", value: "CCTV" },
title: "Free WiFi", description: "High-speed internet in all rooms and common areas", bentoComponent: "icon-info-cards", items: [
{ icon: Wifi, label: "Speed", value: "100 Mbps" },
{ icon: Shield, label: "Security", value: "Encrypted" },
],
},
{
@@ -106,9 +106,9 @@ export default function HomePage() {
],
},
{
title: "24/7 Room Service", description: "Always available to serve your needs round the clock", bentoComponent: "icon-info-cards", items: [
{ icon: Phone, label: "Contact", value: "Anytime" },
{ icon: Clock, label: "Response", value: "Quick" },
title: "Free Parking", description: "Secure parking for your vehicles with 24/7 surveillance", bentoComponent: "icon-info-cards", items: [
{ icon: ParkingCircle, label: "Spaces", value: "50+" },
{ icon: Camera, label: "Security", value: "CCTV" },
],
},
]}
@@ -228,4 +228,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}