Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a57fb6f943 | |||
| dc723f7784 | |||
| b438710b05 | |||
| 2443905a07 | |||
| 0f7ea5e89c | |||
| f37281a9c3 | |||
| 508da8fbe7 | |||
| c6a4223b80 | |||
| e8257629db |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user