7 Commits

Author SHA1 Message Date
1222df8af0 Update src/app/page.tsx 2026-03-05 17:44:50 +00:00
d37f82782b Update src/app/layout.tsx 2026-03-05 17:44:50 +00:00
4b7c83da36 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:37:39 +00:00
fd0fb472dc Merge version_1 into main
Merge version_1 into main
2026-03-04 14:32:31 +00:00
2435d40674 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:30:58 +00:00
fc1ad7dc1e Merge version_1 into main
Merge version_1 into main
2026-03-04 14:28:43 +00:00
0660592542 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:26:54 +00:00
2 changed files with 17 additions and 45 deletions

View File

@@ -1,55 +1,28 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Prestige Realty - Luxury Real Estate & High-End Properties",
description: "Discover exquisite luxury properties with Prestige Realty. Expert agents specializing in high-end real estate, exclusive listings, and premium residential properties.",
keywords: "luxury real estate, high-end properties, luxury homes, exclusive listings, luxury apartments, premium residential",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Prestige Realty - Luxury Real Estate",
description: "Explore our curated collection of luxury properties and find your dream home today.",
url: "https://prestigerealty.com",
siteName: "Prestige Realty",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/modern-living-room-with-large-windows-comfortable-furniture_9975-33081.jpg",
alt: "Luxury property showcase",
},
],
},
twitter: {
card: "summary_large_image",
title: "Prestige Realty - Luxury Real Estate",
description: "Discover exquisite luxury properties with Prestige Realty.",
images: ["http://img.b2bpic.net/free-photo/modern-living-room-with-large-windows-comfortable-furniture_9975-33081.jpg"],
},
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -216,8 +216,8 @@ export default function HomePage() {
title="Ready to Find Your Luxury Home?"
description="Connect with our team of experts to explore exclusive properties, receive personalized guidance, and embark on your luxury real estate journey. Contact Prestige Realty today."
buttons={[
{ text: "Schedule Consultation", href: "/contact" },
{ text: "Browse Properties", href: "/properties" },
{ text: "Get Free Consultation", href: "/contact" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -234,4 +234,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}