Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d3f651e49 | |||
| 0219a250ac | |||
| ac84bd3ff9 | |||
| 2e1ddb8028 | |||
| 0c43f415f9 | |||
| 1b12fe1001 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user