export default function UmmahCityLandingPage() { const properties = [ { title: 'Modern Family Villa', location: 'Dhaka, Bangladesh', price: '$220,000', image: 'https://images.unsplash.com/photo-1568605114967-8130f3a36994?q=80&w=1200&auto=format&fit=crop', }, { title: 'Luxury Apartment', location: 'Chattogram, Bangladesh', price: '$180,000', image: 'https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?q=80&w=1200&auto=format&fit=crop', }, { title: 'Elegant Townhouse', location: 'Sylhet, Bangladesh', price: '$260,000', image: 'https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1200&auto=format&fit=crop', }, ]; return (
{/* Navbar */}

Ummah City

ummahcity.com

{/* Hero Section */}
Luxury Real Estate

Premium Real Estate Experience

Find Your Dream Home With Ummah City

Discover modern homes, luxury apartments, and smart investment opportunities designed for families and communities.

{/* Stats Section */}
{[ ['500+', 'Properties Sold'], ['1200+', 'Happy Clients'], ['15+', 'Years Experience'], ['25+', 'Cities Covered'], ].map(([number, label]) => (

{number}

{label}

))}
{/* Featured Properties */}

Featured Listings

Explore Premium Properties

{properties.map((property) => (
{property.title}
{property.location} {property.price}

{property.title}

))}
{/* About Section */}

About Ummah City

Building Communities With Trust & Excellence

Ummah City is committed to delivering exceptional real estate experiences through modern developments, ethical business practices, and customer-focused solutions.

98%

Client Satisfaction

24/7

Customer Support

Modern Home
{/* CTA Section */}

Start Your Journey

Let’s Find The Perfect Property For You

Whether you're buying, selling, or investing, Ummah City provides expert guidance every step of the way.

{/* Footer */}
); }