Merge version_1 into main #1
@@ -50,7 +50,7 @@ export default function AboutPage() {
|
||||
description="With over 20 years of experience in luxury real estate, we specialize in connecting discerning clients with extraordinary properties worldwide."
|
||||
subdescription="Our team of expert agents understands the nuances of high-end property transactions and provides personalized service at every step."
|
||||
icon={Crown}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg?_wi=2"
|
||||
imageAlt="Prestige Estates office"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -74,28 +74,28 @@ export default function AboutPage() {
|
||||
id: "1",
|
||||
name: "Victoria Ashford",
|
||||
role: "Founder & CEO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg?_wi=2",
|
||||
imageAlt: "Victoria Ashford, CEO",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "David Chen",
|
||||
role: "Head of Acquisitions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg?_wi=2",
|
||||
imageAlt: "David Chen, Head of Acquisitions",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sophie Laurent",
|
||||
role: "International Market Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=2",
|
||||
imageAlt: "Sophie Laurent, Market Specialist",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Michael Sterling",
|
||||
role: "Investment Advisor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg?_wi=2",
|
||||
imageAlt: "Michael Sterling, Investment Advisor",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,27 +1,60 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Real Estate - Prestige Estates",
|
||||
description: "Discover exclusive luxury properties worldwide. Expert agents specializing in high-end residential real estate transactions.",
|
||||
keywords: "luxury real estate, prestige properties, exclusive estates, high-end homes",
|
||||
metadataBase: new URL("https://prestigeestates.com"),
|
||||
alternates: {
|
||||
canonical: "https://prestigeestates.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Prestige Estates - Luxury Real Estate",
|
||||
description: "Discover extraordinary luxury properties in the world's most prestigious locations.",
|
||||
url: "https://prestigeestates.com",
|
||||
siteName: "Prestige Estates",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/hanging-lamp_1339-3167.jpg",
|
||||
alt: "Prestige Estates - Luxury Properties",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Prestige Estates - Luxury Real Estate",
|
||||
description: "Discover extraordinary luxury properties worldwide.",
|
||||
images: ["http://img.b2bpic.net/free-photo/hanging-lamp_1339-3167.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -93,7 +93,7 @@ export default function HomePage() {
|
||||
price: "$8,500,000",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg?_wi=1",
|
||||
imageAlt: "Modern coastal villa",
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function HomePage() {
|
||||
price: "$12,000,000",
|
||||
rating: 5,
|
||||
reviewCount: "31",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1",
|
||||
imageAlt: "Downtown penthouse",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function HomePage() {
|
||||
price: "$15,250,000",
|
||||
rating: 5,
|
||||
reviewCount: "18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg?_wi=1",
|
||||
imageAlt: "Private country estate",
|
||||
},
|
||||
]}
|
||||
@@ -135,7 +135,7 @@ export default function HomePage() {
|
||||
description="With over 20 years of experience in luxury real estate, we specialize in connecting discerning clients with extraordinary properties worldwide."
|
||||
subdescription="Our team of expert agents understands the nuances of high-end property transactions and provides personalized service at every step."
|
||||
icon={Crown}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg?_wi=1"
|
||||
imageAlt="Prestige Estates office"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -157,25 +157,25 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Property Acquisition",
|
||||
description: "Expert guidance in finding and acquiring your dream luxury property with complete confidentiality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164699.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164699.jpg?_wi=1",
|
||||
imageAlt: "Property acquisition service",
|
||||
},
|
||||
{
|
||||
title: "Market Analysis",
|
||||
description: "Detailed market insights and valuation services to ensure optimal pricing and investment returns.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-real-estate-infographic-template_23-2149008780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-real-estate-infographic-template_23-2149008780.jpg?_wi=1",
|
||||
imageAlt: "Market analysis",
|
||||
},
|
||||
{
|
||||
title: "Legal & Documentation",
|
||||
description: "Professional handling of all legal aspects and documentation for seamless transactions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-businesspeople-working-together-office_23-2147923325.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-businesspeople-working-together-office_23-2147923325.jpg?_wi=1",
|
||||
imageAlt: "Legal services",
|
||||
},
|
||||
{
|
||||
title: "Investment Advisory",
|
||||
description: "Strategic counsel on luxury property investments and portfolio management.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg?_wi=1",
|
||||
imageAlt: "Investment advisory",
|
||||
},
|
||||
]}
|
||||
@@ -272,28 +272,28 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Victoria Ashford",
|
||||
role: "Founder & CEO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg?_wi=1",
|
||||
imageAlt: "Victoria Ashford, CEO",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "David Chen",
|
||||
role: "Head of Acquisitions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg?_wi=1",
|
||||
imageAlt: "David Chen, Head of Acquisitions",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sophie Laurent",
|
||||
role: "International Market Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=1",
|
||||
imageAlt: "Sophie Laurent, Market Specialist",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Michael Sterling",
|
||||
role: "Investment Advisor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg?_wi=1",
|
||||
imageAlt: "Michael Sterling, Investment Advisor",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -62,7 +62,7 @@ export default function PropertiesPage() {
|
||||
price: "$8,500,000",
|
||||
rating: 5,
|
||||
reviewCount: "24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg?_wi=2",
|
||||
imageAlt: "Modern coastal villa",
|
||||
},
|
||||
{
|
||||
@@ -72,7 +72,7 @@ export default function PropertiesPage() {
|
||||
price: "$12,000,000",
|
||||
rating: 5,
|
||||
reviewCount: "31",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=2",
|
||||
imageAlt: "Downtown penthouse",
|
||||
},
|
||||
{
|
||||
@@ -82,7 +82,7 @@ export default function PropertiesPage() {
|
||||
price: "$15,250,000",
|
||||
rating: 5,
|
||||
reviewCount: "18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg?_wi=2",
|
||||
imageAlt: "Private country estate",
|
||||
},
|
||||
]}
|
||||
@@ -104,25 +104,25 @@ export default function PropertiesPage() {
|
||||
{
|
||||
title: "Prime Locations",
|
||||
description: "Properties situated in the world's most sought-after neighborhoods and exclusive communities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-outdoor-landscape-infinity-swimming-pool-hotel-resort_74190-9973.jpg?_wi=3",
|
||||
imageAlt: "Prime location",
|
||||
},
|
||||
{
|
||||
title: "Architectural Excellence",
|
||||
description: "Award-winning designs from renowned architects and carefully maintained estates.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3",
|
||||
imageAlt: "Architectural excellence",
|
||||
},
|
||||
{
|
||||
title: "Premium Amenities",
|
||||
description: "State-of-the-art facilities including spas, gyms, wine cellars, and smart home automation.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/type-luxurious-summer-villa-hotel-amara-dolce-vita-luxury-hotel-beautiful-architecture-tekirova-kemer-turkey_146671-18715.jpg?_wi=3",
|
||||
imageAlt: "Premium amenities",
|
||||
},
|
||||
{
|
||||
title: "Investment Potential",
|
||||
description: "Properties selected for strong appreciation potential and excellent rental opportunities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg?_wi=2",
|
||||
imageAlt: "Investment potential",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -56,25 +56,25 @@ export default function ServicesPage() {
|
||||
{
|
||||
title: "Property Acquisition",
|
||||
description: "Expert guidance in finding and acquiring your dream luxury property with complete confidentiality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164699.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164699.jpg?_wi=2",
|
||||
imageAlt: "Property acquisition service",
|
||||
},
|
||||
{
|
||||
title: "Market Analysis",
|
||||
description: "Detailed market insights and valuation services to ensure optimal pricing and investment returns.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-real-estate-infographic-template_23-2149008780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-real-estate-infographic-template_23-2149008780.jpg?_wi=2",
|
||||
imageAlt: "Market analysis",
|
||||
},
|
||||
{
|
||||
title: "Legal & Documentation",
|
||||
description: "Professional handling of all legal aspects and documentation for seamless transactions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-businesspeople-working-together-office_23-2147923325.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-businesspeople-working-together-office_23-2147923325.jpg?_wi=2",
|
||||
imageAlt: "Legal services",
|
||||
},
|
||||
{
|
||||
title: "Investment Advisory",
|
||||
description: "Strategic counsel on luxury property investments and portfolio management.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/consultation-new-project_329181-10342.jpg?_wi=3",
|
||||
imageAlt: "Investment advisory",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user