Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87a8c0ffc5 | |||
| 8b1f013d56 | |||
| cc3d703f01 | |||
| 550cebcdc2 | |||
| afad40d763 | |||
| 02ed2a1baa |
@@ -76,6 +76,7 @@ export default function AboutPage() {
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
cardButtonClassName="w-full"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -136,4 +137,4 @@ export default function AboutPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,6 +74,7 @@ export default function ContactPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
cardButtonClassName="w-full"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -138,4 +139,4 @@ export default function ContactPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,53 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Cabin } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const cabin = Cabin({
|
||||
variable: "--font-cabin",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxe Properties | Premium Real Estate & Investment Solutions",
|
||||
description: "Discover luxury homes, investment properties, and professional real estate services. Over 25 years of excellence in residential and commercial real estate.",
|
||||
keywords: "luxury real estate, property investment, home buying, real estate agent, premium homes",
|
||||
metadataBase: new URL("https://luxeproperties.com"),
|
||||
alternates: {
|
||||
canonical: "https://luxeproperties.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Luxe Properties | Premium Real Estate",
|
||||
description: "Find your dream property with Luxe Properties. Expert real estate services for buyers, sellers, and investors.",
|
||||
url: "https://luxeproperties.com",
|
||||
siteName: "Luxe Properties",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/swimming-pool-beach-luxury-hotel-type-entertainment-complex-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18719.jpg",
|
||||
alt: "Luxury real estate properties"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Luxe Properties | Premium Real Estate",
|
||||
description: "Discover luxury homes and investment properties with professional real estate services.",
|
||||
images: ["http://img.b2bpic.net/free-photo/swimming-pool-beach-luxury-hotel-type-entertainment-complex-amara-dolce-vita-luxury-hotel-resort-tekirova-kemer-turkey_146671-18719.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Luxe Properties - Premium Real Estate", description: "Discover luxury homes and investment properties with Luxe Properties"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${cabin.variable} antialiased`}>
|
||||
<body>
|
||||
{children}
|
||||
|
||||
<script
|
||||
@@ -1419,4 +1383,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,6 +114,7 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
cardButtonClassName="w-full"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -217,4 +218,4 @@ export default function HomePage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -67,6 +67,7 @@ export default function PropertiesPage() {
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
cardButtonClassName="w-full"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -144,4 +145,4 @@ export default function PropertiesPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user