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,54 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const geist = Geist({
variable: "--font-montserrat", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"], });
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Prestige Realty - Luxury Real Estate & High-End Properties", title: "Create Next App", description: "Generated by create next app"};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body className={`${montserrat.variable} antialiased`}> {children}
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -216,8 +216,8 @@ export default function HomePage() {
title="Ready to Find Your Luxury Home?" 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." 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={[ buttons={[
{ text: "Schedule Consultation", href: "/contact" },
{ text: "Browse Properties", href: "/properties" }, { text: "Browse Properties", href: "/properties" },
{ text: "Get Free Consultation", href: "/contact" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "plain" }} background={{ variant: "plain" }}