From f37281a9c314f20013f06829da28b15ae4006dd6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:15:59 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++---------------------------------- 1 file changed, 13 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b26850f..e51df80 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "J N Boys PG | Affordable Hostel in Shivamogga", description: "J N Boys PG offers comfortable, clean, and affordable accommodation for students and professionals in Shivamogga. Safe environment near Bapuji Nagar with excellent facilities.", keywords: "boys hostel Shivamogga, PG accommodation, student housing, affordable hostel, Bapuji Nagar", metadataBase: new URL("https://jnboyspg.com"), - alternates: { - canonical: "https://jnboyspg.com" - }, - openGraph: { - title: "J N Boys PG - Student Accommodation in Shivamogga", description: "Comfortable and affordable boys hostel with safe facilities for students and professionals", url: "https://jnboyspg.com", siteName: "J N Boys PG", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-friends-hostel_23-2150518194.jpg", alt: "boys hostel accommodation pg modern bedroom student housing" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "J N Boys PG - Student Accommodation in Shivamogga", description: "Find comfortable and affordable boys hostel accommodation near Bapuji Nagar", images: ["http://img.b2bpic.net/free-photo/young-friends-hostel_23-2150518194.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "J N Boys PG - Student Housing in Shivamogga", description: "Comfortable and affordable PG accommodation for students and professionals in Shivamogga, near Bapuji Nagar."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +