import React, { useState, useEffect } from 'react'; import { TrendingUp, MapPin, ChevronRight, Phone, Mail, ArrowRight, Facebook, Award, BarChart3, Calendar, MessageSquare, Building2, ShieldCheck, Star, Clock } from 'lucide-react'; const App = () => { const [scrolled, setScrolled] = useState(false); useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const stats = [ { label: "Market Rank", value: "Top 1%", sub: "NM Sales Agents" }, { label: "Local Expertise", value: "Albuquerque", sub: "Residential Expert" }, { label: "Client Rating", value: "5.0", sub: "Professional Excellence" }, ]; const featuredAreas = [ "North Valley", "High Desert", "Tanoan", "Placitas", "Sandia Heights", "Westside" ]; return (
{/* Premium Header */} {/* Hero: Authority & Presence */}
New Mexico Luxury Home
Top Sales Agent In New Mexico

RESULTS DRIVEN.
CLIENT FOCUSED.

The standard for residential real estate in Albuquerque. Maximizing equity for sellers and finding sanctuary for buyers.

{/* Floating Stat Bar */}
{stats.map((stat, i) => (

{stat.value}

{stat.sub}

))}
{/* The Expert Section */}
{/* Replace with actual high-res photo of Jim */}
Jim Shive • Top Sales Agent
Jim Shive

505+

Deep Local Connections in Albuquerque & Surrounding Areas

Residential Expert

JIM SHIVE: THE
ADVANTAGE YOU NEED.

As a top-performing agent at Keller Williams Realty, I don’t just list homes—I engineer sales. My approach combines aggressive digital marketing, meticulous property preparation, and the negotiation skills required to navigate Albuquerque's competitive market.

{[ { title: "Strategic Positioning", desc: "Customized marketing plans tailored to each property's unique DNA.", icon: }, { title: "Unmatched Network", desc: "Instant access to a massive database of qualified buyers and local investors.", icon: }, { title: "Full-Service Concierge", desc: "From staging to closing, my team handles every detail.", icon: } ].map((item, i) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* Albuquerque Expertise */}

SPECIALIZING IN ALBUQUERQUE'S FINEST

Deep knowledge of New Mexico's most desirable neighborhoods

{featuredAreas.map((area, i) => ( {area} ))}
{/* Contact Section */}

READY TO MAKE
YOUR MOVE?

Whether you're selling a luxury estate or looking for your first New Mexico home, get the expertise of a top-tier sales agent on your side.

Voice & Text

505.803.8903

Keller Williams Realty

6240 Riverside Plaza NW #100, ABQ

Request a Consult

e.preventDefault()}>
{/* Footer */}
); }; export default App;