Merge version_1 into main #1
@@ -82,7 +82,7 @@ export default function AmenitiesPage() {
|
||||
title: "AC Luxury Rooms",
|
||||
description: "Spacious, individually designed rooms with individual study desks, separate wardrobes, premium bedding, and climate control. Each room is a personal sanctuary for focused study and rest.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-book-sitting-near-window_23-2147737692.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-book-sitting-near-window_23-2147737692.jpg?_wi=2",
|
||||
imageAlt: "AC Luxury Room",
|
||||
},
|
||||
items: [
|
||||
@@ -97,7 +97,7 @@ export default function AmenitiesPage() {
|
||||
title: "Best-in-Class Gujarati Meals",
|
||||
description: "Authentic, nutritious Gujarati cuisine prepared fresh daily. Our in-house kitchen focuses on health, taste, and dietary preferences. Breakfast, lunch, and dinner tailored for student wellness and energy maintenance.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg?_wi=2",
|
||||
imageAlt: "Dining Hall",
|
||||
},
|
||||
items: [
|
||||
@@ -112,7 +112,7 @@ export default function AmenitiesPage() {
|
||||
title: "24/7 Security & Staff Support",
|
||||
description: "Round-the-clock professional security team, emergency response system, and dedicated staff support. We prioritize your safety and comfort with modern surveillance and trained personnel always available.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-passes-lie-detector-office-asking-questions-polygraph-test_146671-17197.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-passes-lie-detector-office-asking-questions-polygraph-test_146671-17197.jpg?_wi=2",
|
||||
imageAlt: "Security Monitoring",
|
||||
},
|
||||
items: [
|
||||
@@ -127,7 +127,7 @@ export default function AmenitiesPage() {
|
||||
title: "Open Volleyball Ground & Fitness",
|
||||
description: "Dedicated outdoor volleyball court and open recreation space. Physical fitness and stress relief are integral to our holistic development approach. Regular tournaments and wellness activities encourage community bonding.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg?_wi=2",
|
||||
imageAlt: "Volleyball Court",
|
||||
},
|
||||
items: [
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${interTight.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +72,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -132,7 +132,7 @@ export default function HomePage() {
|
||||
title: "AC Luxury Rooms",
|
||||
description: "Spacious, individually designed rooms with individual study desks, separate wardrobes, premium bedding, and climate control. Each room is a personal sanctuary for focused study and rest.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-book-sitting-near-window_23-2147737692.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-book-sitting-near-window_23-2147737692.jpg?_wi=1",
|
||||
imageAlt: "AC Luxury Room",
|
||||
},
|
||||
items: [
|
||||
@@ -147,7 +147,7 @@ export default function HomePage() {
|
||||
title: "Best-in-Class Gujarati Meals",
|
||||
description: "Authentic, nutritious Gujarati cuisine prepared fresh daily. Our in-house kitchen focuses on health, taste, and dietary preferences. Breakfast, lunch, and dinner tailored for student wellness and energy maintenance.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg?_wi=1",
|
||||
imageAlt: "Dining Hall",
|
||||
},
|
||||
items: [
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
title: "24/7 Security & Staff Support",
|
||||
description: "Round-the-clock professional security team, emergency response system, and dedicated staff support. We prioritize your safety and comfort with modern surveillance and trained personnel always available.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-passes-lie-detector-office-asking-questions-polygraph-test_146671-17197.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-passes-lie-detector-office-asking-questions-polygraph-test_146671-17197.jpg?_wi=1",
|
||||
imageAlt: "Security Monitoring",
|
||||
},
|
||||
items: [
|
||||
@@ -177,7 +177,7 @@ export default function HomePage() {
|
||||
title: "Open Volleyball Ground & Fitness",
|
||||
description: "Dedicated outdoor volleyball court and open recreation space. Physical fitness and stress relief are integral to our holistic development approach. Regular tournaments and wellness activities encourage community bonding.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tranquil-space-with-plants_1137-266.jpg?_wi=1",
|
||||
imageAlt: "Volleyball Court",
|
||||
},
|
||||
items: [
|
||||
|
||||
Reference in New Issue
Block a user