Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #5.
This commit is contained in:
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Prabhaa Grand Inn | Luxury Hotel in Chittoor", description: "Experience premium comfort at Prabhaa Grand Inn in Chittoor. Ideal for families, business travelers, and temple visitors. Free WiFi, parking, breakfast included.", keywords: "Chittoor hotels, luxury hotel Chittoor, hotel near Kanipakam temple, best hotel Chittoor, accommodation Chittoor", metadataBase: new URL("https://prabhaagrandinn.com"),
|
||||
alternates: {
|
||||
canonical: "https://prabhaagrandinn.com"},
|
||||
openGraph: {
|
||||
title: "Prabhaa Grand Inn | Premium Comfort Stay in Chittoor", description: "Discover luxury comfort and warm hospitality at Prabhaa Grand Inn. Book your stay today and experience the best of Chittoor.", url: "https://prabhaagrandinn.com", siteName: "Prabhaa Grand Inn", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", alt: "Prabhaa Grand Inn - Luxury Hotel Room"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Prabhaa Grand Inn | Premium Comfort Stay", description: "Experience luxury and comfort at Prabhaa Grand Inn in Chittoor.", images: ["http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892901.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Prabhaa Grand Inn - Premium Comfort Stay in Chittoor", description: "Experience comfort & elegance at Prabhaa Grand Inn, located in the heart of Chittoor. Premium rooms, free breakfast, secure parking, and exceptional hospitality."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="A Premium Stay Experience in Chittoor"
|
||||
description={[
|
||||
"Located on Rajiv Gandhi Road near MSR Circle, Prabhaa Grand Inn offers the perfect combination of comfort, accessibility, and hospitality. Whether you're visiting for business, family travel, or temple darshan, our hotel ensures a peaceful and memorable stay.", "Just minutes away from Chittoor Railway Station, Kattamanchi Lake, and Kanipakam Vinayaka Temple, we provide the ideal base for exploring the region while enjoying premium amenities and exceptional service."
|
||||
"Prabhaa Grand Inn has welcomed 2800+ satisfied guests seeking authentic hospitality and comfort in Chittoor. Located on Rajiv Gandhi Road near MSR Circle, our hotel combines decades of trusted service with modern amenities to ensure every stay is memorable. Whether you're visiting for business, family travel, or temple darshan, our hotel ensures a peaceful and exceptional experience.", "Just minutes away from Chittoor Railway Station, Kattamanchi Lake, and Kanipakam Vinayaka Temple, we provide the ideal base for exploring the region while enjoying premium amenities and exceptional service."
|
||||
]}
|
||||
buttons={[{ text: "Learn More", href: "#amenities" }]}
|
||||
showBorder={true}
|
||||
|
||||
Reference in New Issue
Block a user