5 Commits

Author SHA1 Message Date
b3aa9ac12b Update src/app/page.tsx 2026-03-04 06:02:04 +00:00
21c7d48604 Update src/app/layout.tsx 2026-03-04 06:02:03 +00:00
8a1d77e425 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:01:01 +00:00
3f01f6063c Merge version_1 into main
Merge version_1 into main
2026-03-04 06:00:16 +00:00
1f066f027c Merge version_1 into main
Merge version_1 into main
2026-03-04 05:58:55 +00:00
2 changed files with 8 additions and 49 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Lato } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "@/styles/globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Sri Lakshmi Luxury PG for Ladies (SVG NILAYA) | Women's PG in Bellandur, Bengaluru", description: "Safe, luxury women-only PG in Bellandur with meals included, CCTV security, modern amenities, and WiFi. Rooms from ₹7,500. Call now for availability!", keywords: "ladies PG Bellandur, women PG near ORR, luxury accommodation Bengaluru, PG with meals, women only PG, safe PG for girls", metadataBase: new URL("https://srilakshmipg.com"), title: "Sri Lakshmi Luxury PG - Women Only PG in Bellandur", description: "Premium luxury PG accommodation for women in Bellandur with meals, security, WiFi, and modern amenities"};
alternates: {
canonical: "https://srilakshmipg.com"
},
openGraph: {
title: "Sri Lakshmi Luxury PG for Ladies in Bellandur", description: "Premium women-only accommodation with meals, security, and modern amenities starting at ₹7,500/month", url: "https://srilakshmipg.com", siteName: "Sri Lakshmi Luxury PG", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/full-shot-woman-with-smartphone-vibrator_23-2150232151.jpg", alt: "Sri Lakshmi Luxury PG for Ladies"
}
]
},
twitter: {
card: "summary_large_image", title: "Sri Lakshmi Luxury PG for Ladies in Bellandur", description: "Safe luxury women-only PG with meals, CCTV, WiFi, and modern amenities. Rooms from ₹7,500", images: ["http://img.b2bpic.net/free-photo/full-shot-woman-with-smartphone-vibrator_23-2150232151.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={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -201,7 +201,7 @@ export default function LandingPage() {
description="Ready to find your perfect room in Bellandur? Contact us now to check availability, ask questions, or schedule a visit to Sri Lakshmi Luxury PG." description="Ready to find your perfect room in Bellandur? Contact us now to check availability, ask questions, or schedule a visit to Sri Lakshmi Luxury PG."
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
inputPlaceholder="Enter your email or phone" inputPlaceholder="Enter your phone number"
buttonText="Send Enquiry" buttonText="Send Enquiry"
termsText="We'll contact you within 24 hours to confirm availability and discuss your preferences." termsText="We'll contact you within 24 hours to confirm availability and discuss your preferences."
/> />