import React from 'react'; import { motion } from 'framer-motion'; import { Check, Star, Shield, Zap, Users, Crown } from 'lucide-react'; import HeroSection from '../components/HeroSection'; import Section from '../components/Section'; import { Button } from '@/components/ui/button'; // Import images import startImage from '../assets/getstarted.jpg'; // Getting started with HERO import securityImage from '../assets/sphere.jpg'; // Digital privacy const GetStarted = () => { const features = [ "Operate in the Freezone with complete digital sovereignty", "Own and control your digital assets", "Collaborate with built-in dispute resolution mechanisms", "Collaborate globally without intermediaries", "Complete digital sovereignty and data ownership", "Quantum-safe memory storage across multiple nodes", "Private AI agent access and local processing", "Secure peer-to-peer communication", "Geographic data placement control", "24/7 Personal Agent assistance", "Unlimited secure storage", "Cross-platform compatibility", ]; const steps = [ { number: "01", title: "Create Your Account", description: "Sign up with your email and create your secure HERO identity. Choose your preferred data sovereignty settings." }, { number: "02", title: "Complete Payment", description: "Subscribe for $20/month to access your Personal Agent and all HERO capabilities. Cancel anytime." }, { number: "03", title: "Setup Your HERO", description: "Download the HERO client, configure your preferences, and begin migrating your digital life." }, { number: "04", title: "Start Living Sovereignly", description: "Experience true digital freedom with your Personal Agent managing your secure, private digital ecosystem." } ]; return (
{/* Hero Section */} {/* Pricing Section */}
Simple, Transparent Pricing One price, unlimited possibilities. No hidden fees, no data harvesting, no compromises.

HERO Personal Agent

$20 /month

Complete digital sovereignty for everyone

{features.map((feature, index) => ( {feature} ))}

No credit card required • Cancel anytime

{/* How to Get Started Section */}
How to Get Started Setting up your HERO Personal Agent is simple and secure. Follow these steps to begin your journey to digital sovereignty.
{steps.map((step, index) => (
{step.number}

{step.title}

{step.description}

))}
{/* Security Guarantee Section */}

Your Security is Guaranteed

We use military-grade encryption and quantum-safe algorithms to ensure your data remains private and secure. Your HERO operates under your complete control with zero-knowledge architecture.

{[ "End-to-end encryption for all communications", "Zero-knowledge data storage and processing", "Quantum-resistant cryptographic algorithms", "Geographic data sovereignty options", "Regular security audits and updates", "24/7 monitoring and threat detection" ].map((item, index) => ( {item} ))}
Digital Security
{/* Final CTA Section */}
Ready to Reclaim Your Digital Freedom? Join thousands of users who have already taken control of their digital lives with HERO Personal Agent.

7-day free trial • $20/month after • Cancel anytime

); }; export default GetStarted;