import React, { useState, useEffect } from 'react'; import { Home, TrendingUp, Users, Target, Award, Lightbulb, Heart, ChevronRight, ArrowRight } from 'lucide-react'; export default function NestRecruitingPage() { const [scrollY, setScrollY] = useState(0); const [formData, setFormData] = useState({ name: '', email: '', phone: '', message: '' }); useEffect(() => { const handleScroll = () => setScrollY(window.scrollY); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const handleSubmit = () => { if (formData.name && formData.email && formData.phone) { alert('Thank you for your interest! We\'ll be in touch soon.'); setFormData({ name: '', email: '', phone: '', message: '' }); } else { alert('Please fill in all required fields.'); } }; const NestLogo = () => (
NEST
REAL ESTATE
); const NavBar = () => ( ); const Hero = () => (
{[...Array(20)].map((_, i) => (
))}

ELEVATE YOUR
REAL ESTATE CAREER

Join Riverside County's premier real estate team. Experience unparalleled support, cutting-edge tools, and a community dedicated to your success.

Join Nest
); const StatsSection = () => (

Why Nest?

Real results. Real impact. Real success.

{[ { number: '150+', label: 'Active Agents' }, { number: '2.5X', label: 'Higher Avg. Income' }, { number: '95%', label: 'Agent Satisfaction' }, { number: '$450M+', label: 'Annual Sales Volume' } ].map((stat, i) => (
{stat.number}
{stat.label}
))}
); const CoreValues = () => (

Our Foundation

Built on principles that drive excellence

{[ { icon: Users, title: 'Community First', desc: 'We cultivate meaningful relationships that last' }, { icon: Target, title: 'Results Driven', desc: 'We pursue excellence in every transaction' }, { icon: Lightbulb, title: 'Innovation', desc: 'We embrace progress and lead with technology' }, { icon: Heart, title: 'Integrity', desc: 'We operate with unwavering ethical standards' } ].map((value, i) => (

{value.title}

{value.desc}

))}
); const PillarSection = ({ id, title, subtitle, items, bgColor, reverse }) => (

{title}

{subtitle}

{items.map((item, i) => (
{i + 1}

{item.title}

{item.desc}

))}
{[1, 2, 3, 4].map((i) => (
))}
); const JoinForm = () => (

JOIN NEST

Begin your journey with Riverside County's premier brokerage

setFormData({...formData, name: e.target.value})} className="w-full px-6 py-4 bg-white/10 text-white placeholder-gray-500 border border-white/20 focus:outline-none focus:border-white/50 transition-all font-light tracking-widest" /> setFormData({...formData, email: e.target.value})} className="w-full px-6 py-4 bg-white/10 text-white placeholder-gray-500 border border-white/20 focus:outline-none focus:border-white/50 transition-all font-light tracking-widest" />
setFormData({...formData, phone: e.target.value})} className="w-full px-6 py-4 bg-white/10 text-white placeholder-gray-500 border border-white/20 focus:outline-none focus:border-white/50 transition-all font-light tracking-widest" />