6 Commits

Author SHA1 Message Date
3d3f651e49 Update src/app/page.tsx 2026-03-05 05:24:15 +00:00
0219a250ac Update src/app/layout.tsx 2026-03-05 05:24:14 +00:00
ac84bd3ff9 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:22:07 +00:00
2e1ddb8028 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:21:21 +00:00
0c43f415f9 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:19:43 +00:00
1b12fe1001 Merge version_1 into main
Merge version_1 into main
2026-03-05 05:18:59 +00:00
2 changed files with 10 additions and 65 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Luxe Dubai - Luxury Real Estate in Dubai", title: "Luxe Dubai - Discover Iconic Luxury Properties", description: "Find luxury properties in Dubai faster and easier with our curated collection of iconic homes, cinematic tours, and expert guidance."};
description: "Discover Dubai's most iconic luxury properties through immersive cinematic experiences. Premium real estate portfolio with investment insights.",
keywords: "luxury real estate Dubai, premium properties, Burj Khalifa, Palm Jumeirah, Emirates Hills, Dubai property investment",
metadataBase: new URL("https://luxedubai.com"),
alternates: {
canonical: "https://luxedubai.com",
},
openGraph: {
title: "Luxe Dubai - Discover Luxury Living",
description: "Explore exclusive Dubai properties through cinematic virtual tours and expert guidance.",
url: "https://luxedubai.com",
siteName: "Luxe Dubai",
images: [
{
url: "http://img.b2bpic.net/free-photo/river-modern-buildings-against-sky_1359-154.jpg",
alt: "dubai skyline luxury sunset",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Luxe Dubai - Premium Real Estate Experience",
description: "Immersive luxury property platform for discerning investors.",
images: ["http://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg"],
},
robots: {
index: true,
follow: true,
},
};
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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -63,8 +63,8 @@ export default function HomePage() {
{/* Hero Section */} {/* Hero Section */}
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardCarousel
title="Discover Dubai's Most Iconic Homes" title="Find Luxury Properties Faster & Easier"
description="Explore an exclusive collection of luxury properties in the world's most coveted destinations. Experience cinematic storytelling through our immersive digital gallery." description="Access Dubai's most coveted residences with AED 95B+ in premium properties. Our AI-powered platform connects you with iconic homes through cinematic storytelling and expert curation."
tag="Luxury Collection" tag="Luxury Collection"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
buttons={[ buttons={[
@@ -284,4 +284,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }