Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 900b6cd341 | |||
| 5a0429caea | |||
| d022ceb0b1 | |||
| 254064d26f | |||
| fa3936bb43 | |||
| ff4600b421 | |||
| d17fe4798e | |||
| 3d06253cd4 | |||
| 7edba0e185 | |||
| c0fdaf1e13 | |||
| 85c9c23b05 | |||
| 9b06ced11f | |||
| 02f9fa4e73 | |||
| 1301b672fb | |||
| abc69b65a7 | |||
| 679b673792 |
@@ -6,20 +6,21 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
|
||||
|
||||
export const metadata: Metadata = { title: 'Elite Estates | Curated Luxury Real Estate & Private Residences', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', openGraph: { title: 'Elite Estates | Curated Luxury Real Estate', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', type: 'website' } };
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = { title: 'Elite Estates | Curated Luxury Real Estate & Private Residences', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', openGraph: { title: 'Elite Estates | Curated Luxury Real Estate', description: 'Discover an exclusive collection of luxury properties. Elite Estates offers bespoke real estate services for discerning buyers seeking prestige and privacy.', type: 'website' } };
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,9 +29,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
@@ -10,7 +10,7 @@ import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Sparkles, Home, Shield } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -43,22 +43,19 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
<HeroOverlay
|
||||
title="Discover Luxury Living in Dubai"
|
||||
description="Exclusive properties curated for discerning buyers. Experience the pinnacle of sophistication with our award-winning real estate portfolio."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Premium Collections"
|
||||
tagIcon={Sparkles}
|
||||
buttons={[
|
||||
{ text: "Explore Properties", href: "#properties" },
|
||||
{ text: "Contact Agent", href: "#contact" }
|
||||
]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1", imageAlt: "Luxury penthouse in Dubai Marina" },
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=1", imageAlt: "Dubai skyline at night" },
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=1", imageAlt: "Modern luxury exterior design" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1"
|
||||
imageAlt="Luxury penthouse in Dubai Marina"
|
||||
showBlur={true}
|
||||
textPosition="bottom"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -170,14 +167,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
<FooterLogoReveal
|
||||
logoText="Luxe Properties"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=5"
|
||||
columns={[
|
||||
{ title: "Quick Access", items: [{ label: "Properties", href: "#properties" }, { label: "Our Team", href: "#team" }] },
|
||||
{ title: "Legals", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Luxe Properties Dubai."
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "© 2025 Luxe Properties", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #0c1325;
|
||||
--primary-cta: #0798ff;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #0c1325;
|
||||
--accent: #93c7ff;
|
||||
--background-accent: #a8cde8;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user