6 Commits

Author SHA1 Message Date
87a8c0ffc5 Update src/app/properties/page.tsx 2026-02-27 10:41:42 +00:00
8b1f013d56 Update src/app/page.tsx 2026-02-27 10:41:41 +00:00
cc3d703f01 Update src/app/layout.tsx 2026-02-27 10:41:40 +00:00
550cebcdc2 Update src/app/contact/page.tsx 2026-02-27 10:41:39 +00:00
afad40d763 Update src/app/about/page.tsx 2026-02-27 10:41:38 +00:00
02ed2a1baa Merge version_2 into main
Merge version_2 into main
2026-02-27 10:31:37 +00:00
5 changed files with 13 additions and 45 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}