Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-05 15:17:41 +00:00
2 changed files with 8 additions and 15 deletions

View File

@@ -1,17 +1,10 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { GeistSans } from "geist/font/sans";
import { GeistMono } from "geist/font/mono";
import "./globals.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "J N Boys PG - Student Housing in Shivamogga", description: "Comfortable and affordable PG accommodation for students and professionals in Shivamogga, near Bapuji Nagar."};
title: "J N Boys PG - Student Hostel in Shivamogga", description: "Affordable and comfortable PG accommodation for boys in Shivamogga"};
export default function RootLayout({
children,
@@ -20,7 +13,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
{children}
<script

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"
@@ -193,8 +193,8 @@ export default function LandingPage() {
title="Ready to Join J N Boys PG?"
description="Reach out to us for room availability, pricing details, or any questions. We're here to help you find your perfect home away from home in Shivamogga."
buttons={[
{ text: "Message on WhatsApp", href: "https://wa.me/919999999999" },
{ text: "Call +91-9999-999999", href: "tel:+919999999999" }
{ text: "Contact WhatsApp", href: "https://wa.me/919999999999" },
{ text: "Call Now", href: "tel:+919999999999" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -238,4 +238,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}