import { motion } from 'framer-motion'; const records = [ { title: 'World Records for Web Hosting (1997-2002)', description: 'Our team started the Internet hosting and data center business in Europe. We hosted some of the largest websites in the world including UEFA, NASA, World Cup.', }, { title: 'The FIRST Backup Data Duplication system in the world (2005)', description: 'Our advancements in this field brought up to 100x benefit compared to the status quo running in data centers at the time.', }, { title: 'One of the FIRST Cloud Systems (2008)', description: 'We were one of the pioneers of cloud computing in general. Terms like Virtual Private Data Center were invented by us.', }, { title: 'The FIRST multi-site consistent database (2010)', description: 'We invented a method to store data in a database over multiple sites in such a way data could never be lost, corrupted, or order of updates changed.', }, { title: 'The FIRST unbreakable and distributed storage system (2012)', description: 'Not only incorruptible, our system also boasts 10x energy efficiency compared to alternative solutions, marking a significant technological leap.', }, { title: 'Probably the FIRST proof of block stake blockchain (2017)', description: 'This blockchain was sustainable and scalable and allowed people to transact their stake as well as their digital currency in the same transaction, which still to date is novel.', }, ]; export const TrackRecord = () => { return (

Our Track Record

Our team has been at the forefront of datacenter and cloud innovation for decades, building systems that were faster, safer, and more scalable than anything before.

{records.map((record, index) => (
{index + 1}

{record.title}

{record.description}

))}
); };