import { motion } from 'framer-motion'; const records = [ { title: 'World Records for Web Hosting (1997-2002)', description: 'Kept UEFA, NASA, and World Cup traffic online with continent-scale uptime.', layout: 'lg:col-span-3 lg:row-span-2', showStream: true, }, { title: 'The First Backup Data Duplication System in the World (2005)', description: 'Cut enterprise backup footprints by up to 100× before dedupe was mainstream.', layout: 'lg:col-span-3', }, { title: 'One of the First Cloud Systems (2008)', description: 'Shipped the first Virtual Private Data Center and proved elastic compute trust.', layout: 'lg:col-span-3', }, { title: 'The First Multi-site Consistent Database (2010)', description: 'Delivered failover that preserved every transaction across sovereign sites.', layout: 'lg:col-span-3 lg:row-span-2', showStream: true, }, { title: 'The First Unbreakable and Distributed Storage System (2012)', description: 'Built tamper-proof storage that used 10× less energy and never went dark.', layout: 'lg:col-span-3', }, { title: 'Probably the First Proof of Block Stake Blockchain (2017)', description: 'Merged staking and settlement in one move—years before the market caught up.', layout: 'lg:col-span-3', }, ] as const; export const AboutHero = () => { return (
About GeoMind

We Know a Thing or Two About Datacenters

For decades, we've built the technologies that power the internet, from record-breaking web hosting to unbreakable cloud systems. Now, we're redefining what datacenters stand for: secure, sovereign, and profitable infrastructure designed for people, the planet. Here’s the short list of milestones that still guide our build.

{records.map((record, index) => (

{record.title}

{record.description}

{record.showStream && (
)}
))}
); };