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 +} 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 +} 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}