From d4981748dfec93c9120da3e6041710e7e5e0804b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 15:02:26 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..5ab8d83 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,32 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "VV PG & Hostel - Premium Living for Exam Aspirants Near Central Library", + description: "Luxury residential accommodation for UPSC, GPSC, PSI & Constable exam aspirants. Walking distance to central library. 24/7 security, premium rooms, Gujarati meals & sports facilities.", + keywords: "PG hostel, exam preparation accommodation, UPSC coaching, GPSC hostel, premium pg near library, student hostel", + metadataBase: new URL("https://vvpghostel.com"), + alternates: { + canonical: "https://vvpghostel.com", + }, + openGraph: { + title: "VV PG & Hostel - Premium Living for High-Achieving Students", + description: "Your perfect residential destination for competitive exam success. Luxury rooms, library proximity, world-class amenities.", + url: "https://vvpghostel.com", + siteName: "VV PG & Hostel", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "VV PG & Hostel - Premium Accommodation for Exam Aspirants", + description: "Luxury living + strict study environment = exam success. Near central library.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +58,9 @@ export default function RootLayout({ return ( - + {children}