10 Commits

Author SHA1 Message Date
6c2ed8fe07 Merge version_3 into main
Merge version_3 into main
2026-03-05 10:13:53 +00:00
b5fc8395d1 Update src/app/page.tsx 2026-03-05 10:13:49 +00:00
3833644917 Update src/app/layout.tsx 2026-03-05 10:13:48 +00:00
95eb2ef5af Merge version_2 into main
Merge version_2 into main
2026-03-05 10:11:24 +00:00
f9427fe98e Update src/app/page.tsx 2026-03-05 10:11:20 +00:00
d7a4c0768e Update src/app/layout.tsx 2026-03-05 10:11:20 +00:00
8101b5c028 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:10:17 +00:00
03e42b5608 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:09:38 +00:00
21f3cbaf69 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:08:20 +00:00
8872da1871 Merge version_1 into main
Merge version_1 into main
2026-03-05 10:07:07 +00:00
2 changed files with 11 additions and 49 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google"; import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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"), 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."};
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,
},
};
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={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "plain" }}
buttons={[ buttons={[
{ text: "Check Availability", href: "https://booking.example.com" }, { text: "Book Your Stay Now", href: "https://booking.example.com" },
{ text: "View Rooms", href: "#rooms" }, { text: "View Rooms", href: "#rooms" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -85,7 +85,7 @@ export default function LandingPage() {
<TextSplitAbout <TextSplitAbout
title="A Premium Stay Experience in Chittoor" title="A Premium Stay Experience in Chittoor"
description={[ 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" }]} buttons={[{ text: "Learn More", href: "#amenities" }]}
showBorder={true} showBorder={true}
@@ -310,4 +310,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }