Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b552e152a | |||
| 0a95047334 | |||
| 64d52023dc | |||
| 47fcb89a71 | |||
| 97aadf64d4 | |||
| 4b76ef5397 |
@@ -154,4 +154,4 @@ export default function AboutPage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -138,4 +138,4 @@ export default function ContactPage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,62 +1,26 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const poppins = Poppins({
|
const inter = Inter({
|
||||||
variable: "--font-poppins",
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Dubai Real Estate | Premium Properties & Investment",
|
title: "Dubai Realty - Luxury Properties", description: "Discover premium properties across Dubai's most exclusive neighborhoods. Luxury villas, penthouses, and investment opportunities."};
|
||||||
description: "Discover luxury properties in Dubai. Expert real estate services for buying, selling, and investing. 500+ premium listings across Dubai's finest neighborhoods.",
|
|
||||||
keywords: ["real estate dubai", "luxury properties", "buy apartment dubai", "dubai villas", "property investment"],
|
|
||||||
metadataBase: new URL("https://dubairealty.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://dubairealty.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Dubai Realty - Premium Real Estate in Dubai",
|
|
||||||
description: "Find your dream property in Dubai with expert guidance and exclusive listings.",
|
|
||||||
url: "https://dubairealty.com",
|
|
||||||
siteName: "Dubai Realty",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg",
|
|
||||||
alt: "Dubai Luxury Property"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
type: "website"
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Dubai Realty - Premium Real Estate",
|
|
||||||
description: "Discover luxury properties and investments in Dubai",
|
|
||||||
images: ["https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.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.variable}>
|
||||||
<body
|
{children}
|
||||||
className={`${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1275,7 +1239,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import { Home, Building2, BarChart3, FileText, TrendingUp, Users, Award, Phone } from 'lucide-react';
|
import { Home, Building2, BarChart3, FileText, TrendingUp, Users, Award, Phone, Sparkles } from 'lucide-react';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -42,26 +42,18 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCarouselLogo
|
<HeroBillboard
|
||||||
logoText="DUBAI REALTY"
|
title="Discover Luxury Living in Dubai"
|
||||||
description="Discover premium properties across Dubai's most exclusive neighborhoods. From luxury villas to stunning penthouses, find your perfect home in paradise."
|
description="Experience the pinnacle of luxury real estate across Dubai's most exclusive neighborhoods. From iconic penthouses in Marina to sprawling villas in Arabian Ranches, find your dream property in paradise."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
tag="Premium Properties"
|
||||||
|
tagIcon={Sparkles}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Properties", href: "/properties" },
|
{ text: "Explore Properties", href: "/properties" },
|
||||||
{ text: "Schedule Tour", href: "/contact" }
|
{ text: "Schedule Tour", href: "/contact" }
|
||||||
]}
|
]}
|
||||||
slides={[
|
imageSrc="https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg"
|
||||||
{
|
imageAlt="Luxury Dubai Property"
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg", imageAlt: "Luxury Villa in Dubai"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/futuristic-landscape-dubai_23-2151339807.jpg", imageAlt: "Dubai Skyline Apartment"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/ai-generated-house-design_23-2150666220.jpg", imageAlt: "Waterfront Property Dubai"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
autoplayDelay={5000}
|
|
||||||
showDimOverlay={true}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -116,8 +108,7 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: Building2,
|
icon: Building2,
|
||||||
title: "Investment Advisory",
|
title: "Investment Advisory", description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
|
||||||
description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: BarChart3,
|
icon: BarChart3,
|
||||||
@@ -237,4 +228,4 @@ export default function HomePage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -140,4 +140,4 @@ export default function PropertiesPage() {
|
|||||||
/>
|
/>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user