9 Commits

Author SHA1 Message Date
a57fb6f943 Update src/app/layout.tsx 2026-03-05 15:18:30 +00:00
dc723f7784 Update src/app/page.tsx 2026-03-05 15:17:36 +00:00
b438710b05 Update src/app/layout.tsx 2026-03-05 15:17:36 +00:00
2443905a07 Merge version_2 into main
Merge version_2 into main
2026-03-05 15:16:04 +00:00
0f7ea5e89c Update src/app/page.tsx 2026-03-05 15:15:59 +00:00
f37281a9c3 Update src/app/layout.tsx 2026-03-05 15:15:59 +00:00
508da8fbe7 Merge version_1 into main
Merge version_1 into main
2026-03-05 15:14:55 +00:00
c6a4223b80 Merge version_1 into main
Merge version_1 into main
2026-03-05 15:14:10 +00:00
e8257629db Merge version_1 into main
Merge version_1 into main
2026-03-05 15:13:01 +00:00
2 changed files with 10 additions and 45 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } 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 inter = Inter({
variable: "--font-inter", 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 Hostel in Shivamogga", description: "Affordable and comfortable PG accommodation for boys in Shivamogga"
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -73,7 +73,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<MediaAbout
title="Your Home Away From Home"
description="J N Boys PG provides comfortable and affordable accommodation for boys in Shivamogga. Ideal for students and working professionals seeking a peaceful and safe place to stay. Our rooms are spacious, clean, and well-maintained, creating a friendly and comfortable living environment where every resident feels at home."
description="24/7 Security • All-Inclusive Pricing • Prime Location. J N Boys PG provides comfortable and affordable accommodation for boys in Shivamogga. Ideal for students and working professionals seeking a peaceful and safe place to stay. Our rooms are spacious, clean, and well-maintained, creating a friendly and comfortable living environment where every resident feels at home."
tag="About J N Boys PG"
tagIcon={Building2}
tagAnimation="slide-up"
@@ -238,4 +238,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}