import { useState } from 'react'; import { motion } from 'framer-motion'; import { cn } from '../../../lib/cn'; import { buttonGhostLightClass } from '../../../lib/buttonStyles'; import ContactForm from '../../../components/ui/ContactForm'; const useCases = [ { title: 'Project Mycelium', highlight: 'Decentralized Core', description: 'Project Mycelium turns GeoMind primitives into community services, giving underserved regions, nomads, and privacy seekers decentralized storage, secure networking, and personal agents while sustaining host demand.', image: '/images/mycelium.jpeg', }, { title: 'Digital Free Zone', highlight: 'Sovereign Innovation', description: 'An economic bridge in Zanzibar for digital assets with dedicated governance, regulation, and dispute resolution so builders can deploy compliant Web3, AI, and fintech products on GeoMind-powered future-ready infrastructure.', image: '/images/freezone.jpeg', titleOffset: '-mt-2 sm:-mt-3', }, { title: 'COOP Cloud', highlight: 'People-Powered Cloud', description: 'COOP Cloud teams with the International Cooperative Alliance so 1.2 billion co-op members can run shared infrastructure and launch services together on GeoMind, building a self-sustaining digital infrastructure that serves their communities.', image: '/images/coop.jpeg', titleOffset: '-mt-3 sm:-mt-4', }, { title: 'Cloud for Nations', highlight: 'Digital Sovereignty', description: 'Most governments and citizens rely on foreign clouds, exposing finances and national security. GeoMind equips physical and digital states with sovereign infrastructure so they control data, AI, and services on their own terms.', image: '/images/countries.jpeg', }, { title: 'Real Estate Deployments', highlight: 'Underutilized Spaces', description: 'Deploy GeoMind in underutilized spaces with rapid integration into building utilities. Turn idle rooms into revenue generating data centers at minimal additional cost. Deliver residents and employees data sovereignty on tech that requires minimal maintenance.', image: '/images/hometech2.jpg', featured: true, }, ]; export const UseCasesGrid = () => { const [isContactFormOpen, setIsContactFormOpen] = useState(false); const [formType, setFormType] = useState<'deploy' | 'offtake' | 'investor'>('deploy'); const handleOpenForm = (type: 'deploy' | 'offtake' | 'investor') => { setFormType(type); setIsContactFormOpen(true); }; return (

Use Cases

From decentralized cores to national-scale infrastructure, GeoMind translates sovereign compute into deployable products. Each use case blends hyperscale performance with edge responsiveness, enabling partners to launch resilient, energy-efficient capacity exactly where it is needed.

{useCases.map((useCase, index) => (
{useCase.title}
{useCase.highlight}

{useCase.title}

{useCase.description}

))}

Become a Partner

Build sovereign infrastructure with GeoMind's ecosystem.

Pick the path that delivers outcomes fast: deploy capacity, lock in offtake, or invest in the platform redefining cloud infrastructure.

setIsContactFormOpen(false)} title={formType === 'deploy' ? 'Deploy Capacity' : formType === 'offtake' ? 'Offtake Capacity' : 'Invest in the Tech'} formType={formType} />
); };