Merge version_2 into main #2
@@ -1,54 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Discover premium off-plan and ready-to-move residential properties across Dubai. Expert real estate solutions with transparent pricing and complete buyer support.", keywords: "off-plan properties dubai, luxury apartments dubai, real estate dubai, buy property dubai, ready to move dubai", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Discover premium off-plan and ready-to-move residential properties across Dubai.", siteName: "Middleton Real Estate", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/glass-skyscraper-against-blue-sky-view-from-bottom_93675-134753.jpg", alt: "Luxury Dubai apartments and properties"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Premium residential properties with transparent pricing and expert support.", images: ["http://img.b2bpic.net/free-photo/glass-skyscraper-against-blue-sky-view-from-bottom_93675-134753.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Middleton Real Estate", description: "Luxury off-plan properties in Dubai"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Sparkles, Award, Brain, CheckCircle, HandshakeIcon, DollarSign, Zap, Shield, Phone } from "lucide-react";
|
||||
import { Sparkles, Award, Brain, CheckCircle, HandshakeIcon, DollarSign, Zap, Shield, Phone, BadgeCheck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -94,10 +94,10 @@ export default function LandingPage() {
|
||||
<div id="properties" data-section="properties">
|
||||
<ProductCardThree
|
||||
title="Featured Properties"
|
||||
description="Explore our curated selection of premium off-plan and ready-to-move properties across Dubai's most desirable neighborhoods."
|
||||
tag="Limited Availability"
|
||||
tagIcon={Sparkles}
|
||||
tag="All RERA Verified"
|
||||
tagIcon={BadgeCheck}
|
||||
tagAnimation="slide-up"
|
||||
description="Explore our curated selection of premium off-plan and ready-to-move properties across Dubai's most desirable neighborhoods."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user