|
|
|
|
@@ -1,60 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Lato } from "next/font/google";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const lato = Lato({
|
|
|
|
|
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"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
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"),
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
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"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1422,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|