Merge version_1 into main #1
@@ -87,7 +87,7 @@ export default function AboutPage() {
|
||||
description="With over 20 years of experience in the luxury real estate market, Prestige Realty has established itself as the premier destination for discerning buyers and sellers seeking exceptional properties and expert guidance."
|
||||
subdescription="Our team of certified real estate professionals combines local market expertise with global perspectives to deliver unparalleled service in property transactions, investment opportunities, and portfolio management."
|
||||
icon={Home}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg?_wi=3"
|
||||
imageAlt="Prestige Realty professional team"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -103,21 +103,21 @@ export default function AboutPage() {
|
||||
id: "expertise-1",
|
||||
title: "Market Analysis & Strategy",
|
||||
description: "Comprehensive market research and strategic planning to maximize your investment returns and property value.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-infographic-with-retro-colors_23-2148393397.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-infographic-with-retro-colors_23-2148393397.jpg?_wi=2",
|
||||
imageAlt: "Real estate market analysis",
|
||||
},
|
||||
{
|
||||
id: "expertise-2",
|
||||
title: "Property Valuation",
|
||||
description: "Professional appraisals and valuations conducted by certified experts to ensure fair market pricing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-with-plans_23-2148889788.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-with-plans_23-2148889788.jpg?_wi=2",
|
||||
imageAlt: "Property valuation assessment",
|
||||
},
|
||||
{
|
||||
id: "expertise-3",
|
||||
title: "Investment Solutions",
|
||||
description: "Curated investment opportunities with detailed analysis and risk assessment for optimal portfolio growth.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-concept-with-copy-space-office-desk-table-with-pen-focus-analysis-chart-computer-notebook-cup-coffee-desk-vintage-tone-retro-filter-selective-focus_1418-578.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-concept-with-copy-space-office-desk-table-with-pen-focus-analysis-chart-computer-notebook-cup-coffee-desk-vintage-tone-retro-filter-selective-focus_1418-578.jpg?_wi=2",
|
||||
imageAlt: "Real estate investment strategy",
|
||||
},
|
||||
]}
|
||||
@@ -138,21 +138,21 @@ export default function AboutPage() {
|
||||
id: "agent-1",
|
||||
name: "John Harrison",
|
||||
role: "Senior Real Estate Agent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-document_23-2149445754.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-document_23-2149445754.jpg?_wi=2",
|
||||
imageAlt: "John Harrison",
|
||||
},
|
||||
{
|
||||
id: "agent-2",
|
||||
name: "Lisa Thompson",
|
||||
role: "Luxury Properties Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg?_wi=2",
|
||||
imageAlt: "Lisa Thompson",
|
||||
},
|
||||
{
|
||||
id: "agent-3",
|
||||
name: "Robert Williams",
|
||||
role: "Investment Advisor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-suit-holding-contract_23-2148269312.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-suit-holding-contract_23-2148269312.jpg?_wi=2",
|
||||
imageAlt: "Robert Williams",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -116,7 +116,7 @@ export default function ContactPage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hand-businesswoman-signing-contract-meeting-room-close-up-image_482257-25802.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hand-businesswoman-signing-contract-meeting-room-close-up-image_482257-25802.jpg?_wi=2"
|
||||
imageAlt="Prestige Realty office meeting room"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Send Inquiry"
|
||||
|
||||
@@ -1,24 +1,56 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Prestige Realty | Luxury Real Estate & Property Sales",
|
||||
description: "Discover premium properties and expert real estate services with Prestige Realty. 20+ years of excellence in luxury home sales and investment opportunities.",
|
||||
keywords: "real estate, luxury homes, property sales, real estate agent, investment properties, houses for sale",
|
||||
openGraph: {
|
||||
title: "Prestige Realty | Your Luxury Real Estate Partner",
|
||||
description: "Expert real estate services and premium property listings. Find your dream home or investment property with Prestige Realty.",
|
||||
siteName: "Prestige Realty",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg",
|
||||
alt: "Prestige Realty - Luxury Properties",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Prestige Realty | Luxury Real Estate",
|
||||
description: "Discover premium properties and expert real estate services",
|
||||
images: ["http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +59,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -115,21 +115,21 @@ export default function HomePage() {
|
||||
id: "property-1",
|
||||
name: "Modern Downtown Apartment",
|
||||
price: "$850,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/family-parents-living-room-scene_24877-49940.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/family-parents-living-room-scene_24877-49940.jpg?_wi=1",
|
||||
imageAlt: "Modern luxury apartment",
|
||||
},
|
||||
{
|
||||
id: "property-2",
|
||||
name: "Suburban Family Home",
|
||||
price: "$620,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-green-park_1417-1446.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-green-park_1417-1446.jpg?_wi=1",
|
||||
imageAlt: "Beautiful suburban residence",
|
||||
},
|
||||
{
|
||||
id: "property-3",
|
||||
name: "Luxury Villa Estate",
|
||||
price: "$2,450,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg?_wi=1",
|
||||
imageAlt: "Exclusive luxury villa",
|
||||
},
|
||||
]}
|
||||
@@ -149,7 +149,7 @@ export default function HomePage() {
|
||||
description="With over 20 years of experience in the luxury real estate market, Prestige Realty has established itself as the premier destination for discerning buyers and sellers seeking exceptional properties and expert guidance."
|
||||
subdescription="Our team of certified real estate professionals combines local market expertise with global perspectives to deliver unparalleled service in property transactions, investment opportunities, and portfolio management."
|
||||
icon={Home}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg?_wi=1"
|
||||
imageAlt="Prestige Realty professional team"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -165,21 +165,21 @@ export default function HomePage() {
|
||||
id: "expertise-1",
|
||||
title: "Market Analysis & Strategy",
|
||||
description: "Comprehensive market research and strategic planning to maximize your investment returns and property value.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-infographic-with-retro-colors_23-2148393397.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-infographic-with-retro-colors_23-2148393397.jpg?_wi=1",
|
||||
imageAlt: "Real estate market analysis",
|
||||
},
|
||||
{
|
||||
id: "expertise-2",
|
||||
title: "Property Valuation",
|
||||
description: "Professional appraisals and valuations conducted by certified experts to ensure fair market pricing.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-with-plans_23-2148889788.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-with-plans_23-2148889788.jpg?_wi=1",
|
||||
imageAlt: "Property valuation assessment",
|
||||
},
|
||||
{
|
||||
id: "expertise-3",
|
||||
title: "Investment Solutions",
|
||||
description: "Curated investment opportunities with detailed analysis and risk assessment for optimal portfolio growth.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-concept-with-copy-space-office-desk-table-with-pen-focus-analysis-chart-computer-notebook-cup-coffee-desk-vintage-tone-retro-filter-selective-focus_1418-578.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-concept-with-copy-space-office-desk-table-with-pen-focus-analysis-chart-computer-notebook-cup-coffee-desk-vintage-tone-retro-filter-selective-focus_1418-578.jpg?_wi=1",
|
||||
imageAlt: "Real estate investment strategy",
|
||||
},
|
||||
]}
|
||||
@@ -293,21 +293,21 @@ export default function HomePage() {
|
||||
id: "agent-1",
|
||||
name: "John Harrison",
|
||||
role: "Senior Real Estate Agent",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-document_23-2149445754.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-holding-document_23-2149445754.jpg?_wi=1",
|
||||
imageAlt: "John Harrison",
|
||||
},
|
||||
{
|
||||
id: "agent-2",
|
||||
name: "Lisa Thompson",
|
||||
role: "Luxury Properties Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-professional-business-woman-smiling-outdoor_1391-4.jpg?_wi=1",
|
||||
imageAlt: "Lisa Thompson",
|
||||
},
|
||||
{
|
||||
id: "agent-3",
|
||||
name: "Robert Williams",
|
||||
role: "Investment Advisor",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-suit-holding-contract_23-2148269312.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-old-man-suit-holding-contract_23-2148269312.jpg?_wi=1",
|
||||
imageAlt: "Robert Williams",
|
||||
},
|
||||
]}
|
||||
@@ -354,7 +354,7 @@ export default function HomePage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hand-businesswoman-signing-contract-meeting-room-close-up-image_482257-25802.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hand-businesswoman-signing-contract-meeting-room-close-up-image_482257-25802.jpg?_wi=1"
|
||||
imageAlt="Prestige Realty office meeting room"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Send Inquiry"
|
||||
|
||||
@@ -93,7 +93,7 @@ export default function PropertiesPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "fluid" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg?_wi=2"
|
||||
imageAlt="Luxury property listings"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -109,21 +109,21 @@ export default function PropertiesPage() {
|
||||
id: "property-1",
|
||||
name: "Modern Downtown Apartment",
|
||||
price: "$850,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/family-parents-living-room-scene_24877-49940.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/family-parents-living-room-scene_24877-49940.jpg?_wi=2",
|
||||
imageAlt: "Modern luxury apartment",
|
||||
},
|
||||
{
|
||||
id: "property-2",
|
||||
name: "Suburban Family Home",
|
||||
price: "$620,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-green-park_1417-1446.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-green-park_1417-1446.jpg?_wi=2",
|
||||
imageAlt: "Beautiful suburban residence",
|
||||
},
|
||||
{
|
||||
id: "property-3",
|
||||
name: "Luxury Villa Estate",
|
||||
price: "$2,450,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-city-architecture_23-2151918962.jpg?_wi=3",
|
||||
imageAlt: "Exclusive luxury villa",
|
||||
},
|
||||
]}
|
||||
@@ -172,7 +172,7 @@ export default function PropertiesPage() {
|
||||
required: true,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-work-environment-urban-corporation-downtown-building_482257-124382.jpg?_wi=2"
|
||||
imageAlt="Real estate consultation"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Schedule Tour"
|
||||
|
||||
Reference in New Issue
Block a user