import React from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from './ui/card' import { Input } from './ui/input' import { Label } from './ui/label' import { Building2, Globe, Briefcase, Users, Home, DollarSign, CheckCircle, AlertCircle, ArrowRight, Zap, TrendingUp, Target, Shield, Network, BookOpen } from 'lucide-react' function Step1Form({ formData, handleInputChange, formError }) { return ( <> {/* How Do You Want to Get Involved? */}

How Do You Want to Get Involved?

{formError && (
{formError}
)}

Please select one or more categories below that best describe your interest to reveal specific questions.

handleInputChange('interestCategory', 'realEstateDeveloper')} > Real Estate Developer Transform your properties into digital utilities. handleInputChange('interestCategory', 'government')} > Government/Public Sector Build sovereign digital infrastructure. handleInputChange('interestCategory', 'enterprise')} > Enterprise Customer Deploy private, secure cloud infrastructure. handleInputChange('interestCategory', 'telecom')} > Telecom/ISP Extend your network with edge computing. handleInputChange('interestCategory', 'investor')} > Investor/Partner Join the ThreeFold ecosystem. handleInputChange('interestCategory', 'individual')} > Individual/Community Start with residential deployment.
{/* Contact Form - General Information */}
Your Contact Details Provide your basic contact information.
handleInputChange('name', e.target.value)} required />
handleInputChange('email', e.target.value)} required />
handleInputChange('company', e.target.value)} />
) } export default Step1Form