From afad40d763fc7b9efba69d11cbdc243f07c07a54 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:41:38 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 253e5e7..a5daa38 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -76,6 +76,7 @@ export default function AboutPage() { animationType="depth-3d" textboxLayout="default" useInvertedBackground={true} + cardButtonClassName="w-full" /> @@ -136,4 +137,4 @@ export default function AboutPage() { /> ); -} \ No newline at end of file +} -- 2.49.1 From 550cebcdc2f7413ff2c5c76782c909a22efa4f42 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:41:39 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3c1be10..f9ffee5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -74,6 +74,7 @@ export default function ContactPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={true} + cardButtonClassName="w-full" /> @@ -138,4 +139,4 @@ export default function ContactPage() { /> ); -} \ No newline at end of file +} -- 2.49.1 From cc3d703f018c267da840da284fefd5a69968fc0f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Feb 2026 10:41:40 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++----------------------------------------- 1 file changed, 5 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a2f77c5..e7e6738 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}