Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1222df8af0 | |||
| d37f82782b | |||
| 4b7c83da36 | |||
| fd0fb472dc | |||
| 2435d40674 | |||
| fc1ad7dc1e | |||
| 0660592542 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user