import { HeroSection } from './components/HeroSection'; import { ScrollLockedSection } from './components/ScrollLockedSection'; import { CtaSection } from './components/CtaSection'; import { Footer } from '../../components/layout/Footer'; const highlightTextClass = 'text-brand-500'; const sections = [ { id: 'datacenter-economy', eyebrow: 'Datacenter Economy', title: ( <> The Datacenter Economy,{' '} Decentralized ), description: 'GeoMind enables everyone to profit from Cloud and AI infrastructure at any scale. Deploy hardware, sell your capacity to the marketplace, earn from day one.', showButton: false, }, { id: 'deploy-anywhere', eyebrow: 'Deployment Tiers', title: ( <> Deploy Anywhere, Any Scale ), description: 'Tier-H for homes and communities. Tier-S for enterprises and underutilized commercial space. Same economics, different scale.', buttonText: 'Explore Hardware Tiers', buttonLink: '/technology#hardware-tiers', }, { id: 'autonomous-stack', eyebrow: 'Plug-and-Play', title: ( <> Five Primitives, Zero Dependencies ), description: 'Hardware ships with OS, Compute, Storage, Network, and GPU built-in. Fully autonomous operation eliminates vendor lock-in completely.', buttonText: 'Explore Software Stack', buttonLink: '/technology#software-stack', }, { id: 'capacity-marketplace', eyebrow: 'Glocal Marketplace', title: ( <> Local Hardware, Global Liquidity ), description: ( <> Zero-OS partitions capacity into tradeable slices called Cloud Units (CU). Use what you need. Sell idle capacity automatically on the marketplace. ), buttonText: 'Explore Marketplace', buttonLink: '/technology#marketplace', }, { id: 'dual-revenue', eyebrow: 'Profit', title: ( <> Earn While You Operate ), description: 'Run your workloads during business hours. Rent excess capacity 24/7. Cloud capacity and infrastructure becomes an income-generating asset, not a cost center.', showButton: false, }, { id: 'economic-advantage', eyebrow: 'Competitive Advantage', title: ( <> Lower Costs, Higher Margins ), description: 'Minimal datacenter build costs. Energy-efficient autonomous operation. No enterprise maintenance overhead. Your competitive advantage is built in.', showButton: false, }, { id: 'instant-demand', eyebrow: 'Offtakers', title: ( <> Built-In Customer Base ), description: 'Initial enterprise offtake partners are in place. Deploy hardware, connect to marketplace, start earning. No customer acquisition needed.', buttonText: 'See Use Cases', buttonLink: '/usecases', }, ]; export const HomePage = () => { return (
{sections.map((section) => ( ))}
); };