Merge version_3 into main #2
@@ -154,4 +154,4 @@ export default function AboutPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,4 +138,4 @@ export default function ContactPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,62 +1,26 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Dubai Real Estate | Premium Properties & Investment",
|
||||
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
|
||||
}
|
||||
};
|
||||
title: "Dubai Realty - Luxury Properties", description: "Discover premium properties across Dubai's most exclusive neighborhoods. Luxury villas, penthouses, and investment opportunities."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1275,7 +1239,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
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';
|
||||
|
||||
export default function HomePage() {
|
||||
@@ -42,26 +42,18 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="DUBAI REALTY"
|
||||
description="Discover premium properties across Dubai's most exclusive neighborhoods. From luxury villas to stunning penthouses, find your perfect home in paradise."
|
||||
<HeroBillboard
|
||||
title="Discover Luxury Living in Dubai"
|
||||
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={[
|
||||
{ text: "Explore Properties", href: "/properties" },
|
||||
{ text: "Schedule Tour", href: "/contact" }
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
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}
|
||||
imageSrc="https://img.b2bpic.net/free-photo/inner-courtyard-with-swimming-pool_661209-479.jpg"
|
||||
imageAlt="Luxury Dubai Property"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -116,8 +108,7 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
icon: Building2,
|
||||
title: "Investment Advisory",
|
||||
description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
|
||||
title: "Investment Advisory", description: "Expert guidance on real estate investments with detailed market analysis and ROI projections for savvy investors."
|
||||
},
|
||||
{
|
||||
icon: BarChart3,
|
||||
@@ -237,4 +228,4 @@ export default function HomePage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -140,4 +140,4 @@ export default function PropertiesPage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user