7 Commits

Author SHA1 Message Date
92fe8992e4 Merge version_2 into main
Merge version_2 into main
2026-03-05 05:24:19 +00:00
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 { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
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"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Luxe Dubai - Luxury Real Estate in Dubai",
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,
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -63,8 +63,8 @@ export default function HomePage() {
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Discover Dubai's Most Iconic Homes"
description="Explore an exclusive collection of luxury properties in the world's most coveted destinations. Experience cinematic storytelling through our immersive digital gallery."
title="Find Luxury Properties Faster & Easier"
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"
background={{ variant: "sparkles-gradient" }}
buttons={[
@@ -284,4 +284,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}