meta title and description updated
This commit is contained in:
parent
5e48dad541
commit
bcd517eb05
@ -2,6 +2,12 @@ import Link from "next/link";
|
|||||||
import Header from "@/components/Header";
|
import Header from "@/components/Header";
|
||||||
import Footer from "@/components/Footer";
|
import Footer from "@/components/Footer";
|
||||||
import InnerBanner from "@/components/InnerBanner";
|
import InnerBanner from "@/components/InnerBanner";
|
||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Privacy Policy | Your Data, Security & Rights",
|
||||||
|
description: "Understand how your personal information is collected, used, and protected. Our Privacy Policy ensures transparency and your data rights.",
|
||||||
|
};
|
||||||
|
|
||||||
export default function PrivacyPolicy() {
|
export default function PrivacyPolicy() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@ -3,6 +3,12 @@ import Image from "next/image";
|
|||||||
import Header from "@/components/Header";
|
import Header from "@/components/Header";
|
||||||
import Footer from "@/components/Footer";
|
import Footer from "@/components/Footer";
|
||||||
import InnerBanner from "@/components/InnerBanner";
|
import InnerBanner from "@/components/InnerBanner";
|
||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Our Projects | Premium Residential & Commercial Spaces",
|
||||||
|
description: "Explore premium residential and commercial spaces built for comfort, convenience, and superior lifestyle experiences.",
|
||||||
|
};
|
||||||
|
|
||||||
export default function ProjectsPage() {
|
export default function ProjectsPage() {
|
||||||
const categories = [
|
const categories = [
|
||||||
|
|||||||
@ -22,8 +22,8 @@ export async function generateMetadata({ params }: { params: Promise<{ slug: str
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title: `${property.title} | Sky and Soil`,
|
title: property.metaTitle || property.title,
|
||||||
description: property.description,
|
description: property.metaDescription || property.description,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,6 +2,12 @@ import Link from "next/link";
|
|||||||
import Header from "@/components/Header";
|
import Header from "@/components/Header";
|
||||||
import Footer from "@/components/Footer";
|
import Footer from "@/components/Footer";
|
||||||
import InnerBanner from "@/components/InnerBanner";
|
import InnerBanner from "@/components/InnerBanner";
|
||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Terms of Service | Website Use & User Guidelines",
|
||||||
|
description: "Read the Terms of Service to know your rights, responsibilities, and the rules for using our website safely and effectively.",
|
||||||
|
};
|
||||||
|
|
||||||
export default function TermsOfService() {
|
export default function TermsOfService() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@ -26,9 +26,9 @@ export default function Header() {
|
|||||||
: "bg-transparent py-6"
|
: "bg-transparent py-6"
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<div className="max-w-7xl mx-auto px-6 flex items-center justify-between">
|
<div className="w-full px-[50px] flex items-center justify-between">
|
||||||
<Link href="/" className="flex items-center gap-3 group">
|
<Link href="/" className="flex items-center gap-3 group">
|
||||||
<div className="relative w-60 h-20 transition-transform group-hover:scale-105">
|
<div className="relative w-60 h-20 transition-transform group-hover:scale-105 -left-[83px]">
|
||||||
<Image
|
<Image
|
||||||
src={isScrolled ? "/assets/images/blue-logo.png" : "/assets/images/white-logo.png"}
|
src={isScrolled ? "/assets/images/blue-logo.png" : "/assets/images/white-logo.png"}
|
||||||
alt="Sky and Soil Logo"
|
alt="Sky and Soil Logo"
|
||||||
|
|||||||
@ -2,6 +2,8 @@ export type Property = {
|
|||||||
id: number;
|
id: number;
|
||||||
slug: string;
|
slug: string;
|
||||||
title: string;
|
title: string;
|
||||||
|
metaTitle?: string;
|
||||||
|
metaDescription?: string;
|
||||||
category: "Apartments" | "Premium Homes" | "Luxury" | "Villas" | "Plots";
|
category: "Apartments" | "Premium Homes" | "Luxury" | "Villas" | "Plots";
|
||||||
location: string;
|
location: string;
|
||||||
price: string;
|
price: string;
|
||||||
@ -23,6 +25,8 @@ export const properties: Property[] = [
|
|||||||
id: 1,
|
id: 1,
|
||||||
slug: "barca-at-godrej-msr-city",
|
slug: "barca-at-godrej-msr-city",
|
||||||
title: "BARCA at Godrej MSR City",
|
title: "BARCA at Godrej MSR City",
|
||||||
|
metaTitle: "BARCA at Godrej MSR City",
|
||||||
|
metaDescription: "Experience luxury living at BARCA, Godrej MSR City. These 3 BHK apartments blend modern architecture with natural serenity for a truly refined lifestyle.",
|
||||||
category: "Apartments",
|
category: "Apartments",
|
||||||
location: "Shettigere Road, Bangalore",
|
location: "Shettigere Road, Bangalore",
|
||||||
price: "₹ 1.9 CR*",
|
price: "₹ 1.9 CR*",
|
||||||
@ -42,6 +46,8 @@ export const properties: Property[] = [
|
|||||||
id: 2,
|
id: 2,
|
||||||
slug: "godrej-woods",
|
slug: "godrej-woods",
|
||||||
title: "Godrej Woods",
|
title: "Godrej Woods",
|
||||||
|
metaTitle: "Godrej Woods",
|
||||||
|
metaDescription: "Godrej Woods offers premium 2 & 3 BHK apartments in Thanisandra. Enjoy a forest-themed lifestyle with world-class amenities and excellent connectivity.",
|
||||||
category: "Premium Homes",
|
category: "Premium Homes",
|
||||||
location: "Thanisandra, North Bangalore",
|
location: "Thanisandra, North Bangalore",
|
||||||
price: "₹ 1.62 CR*",
|
price: "₹ 1.62 CR*",
|
||||||
@ -61,6 +67,8 @@ export const properties: Property[] = [
|
|||||||
id: 3,
|
id: 3,
|
||||||
slug: "godrej-hoskote",
|
slug: "godrej-hoskote",
|
||||||
title: "Godrej Hoskote",
|
title: "Godrej Hoskote",
|
||||||
|
metaTitle: "Godrej Hoskote",
|
||||||
|
metaDescription: "Discover community living at Godrej Hoskote. Premium 2 & 3 BHK homes designed for comfort and convenience, with easy access to industrial hubs and schools.",
|
||||||
category: "Apartments",
|
category: "Apartments",
|
||||||
location: "Hoskote, Soukya Road Ext",
|
location: "Hoskote, Soukya Road Ext",
|
||||||
price: "₹ 1.17 Cr*",
|
price: "₹ 1.17 Cr*",
|
||||||
@ -80,6 +88,8 @@ export const properties: Property[] = [
|
|||||||
id: 4,
|
id: 4,
|
||||||
slug: "godrej-lakeside-orchard",
|
slug: "godrej-lakeside-orchard",
|
||||||
title: "Godrej Lakeside Orchard",
|
title: "Godrej Lakeside Orchard",
|
||||||
|
metaTitle: "Godrej Lakeside Orchard",
|
||||||
|
metaDescription: "Wake up to serene lake views at Godrej Lakeside Orchard. Luxury 2, 3, 3.5 & 4.5 BHK apartments offer a resort-like living experience on Sarjapur Road.",
|
||||||
category: "Luxury",
|
category: "Luxury",
|
||||||
location: "Sarjapur Road, Bangalore",
|
location: "Sarjapur Road, Bangalore",
|
||||||
price: "₹ 1.89 Cr*",
|
price: "₹ 1.89 Cr*",
|
||||||
@ -99,6 +109,8 @@ export const properties: Property[] = [
|
|||||||
id: 5,
|
id: 5,
|
||||||
slug: "godrej-tiara",
|
slug: "godrej-tiara",
|
||||||
title: "Godrej Tiara",
|
title: "Godrej Tiara",
|
||||||
|
metaTitle: "Godrej Tiara",
|
||||||
|
metaDescription: "Godrej Tiara presents exclusive 3 & 4 BHK apartments in Yeshwanthpur. Experience unmatched luxury, sophisticated design, and panoramic city skyline views.",
|
||||||
category: "Luxury",
|
category: "Luxury",
|
||||||
location: "Yeshwanthpur, Bangalore",
|
location: "Yeshwanthpur, Bangalore",
|
||||||
price: "Price on Request",
|
price: "Price on Request",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user