This commit is contained in:
sasha-astiadi 2025-07-09 17:56:04 +02:00
parent d5c6298512
commit ee296687d2

View File

@ -1,31 +1,35 @@
const timeline = [ const timeline = [
{ {
name: 'Founded company', name: 'Core Infrastructure',
description: description:
'Nihil aut nam. Dignissimos a pariatur et quos omnis. Aspernatur asperiores et dolorem dolorem optio voluptate repudiandae.', '✓ ThreeFolds decentralized, autonomous edge computing technology came alive, serving as the backbone of the OurWorld ecosystem.',
date: 'Aug 2021', date: 'Phase 1',
dateTime: '2021-08', description2:
'✓ OurWorld helped secure $50M in investment from our community of investors.',
}, },
{ {
name: 'Secured $65m in funding', name: 'Zanzibar Digital Free Zone',
description: description:
'Provident quia ut esse. Vero vel eos repudiandae aspernatur. Cumque minima impedit sapiente a architecto nihil.', '✓ Partnered with Government of Zanzibar through ZICTA to establish the Zanzibar Digital Free Zone with financial and other incentives for ventures.',
date: 'Dec 2021', description2:
dateTime: '2021-12', '✓ Developed an alpha version of integrated platforms within the Free Zone to onboard new ventures into the ecosystem.',
date: 'Phase 2',
}, },
{ {
name: 'Released beta', name: 'Launch of New Ventures',
description: description:
'Sunt perspiciatis incidunt. Non necessitatibus aliquid. Consequatur ut officiis earum eum quia facilis. Hic deleniti dolorem quia et.', '◯ $30M raise underway to expand core infrastructure and invest in new ventures with a focus on interdependent projects that strengthen the ecosystem collectively.',
date: 'Feb 2022', description2:
dateTime: '2022-02', '◯ Designing regulatory framework to facilitate digital assets exchanges and other decentralized financial platforms.',
date: 'Current Phase',
}, },
{ {
name: 'Global launch of product', name: 'Scalable Impact',
description: description:
'Ut ipsa sint distinctio quod itaque nam qui. Possimus aut unde id architecto voluptatem hic aut pariatur velit.', '◯ Deploy 1 million nodes and onboard 10 million users to empower the OurWorld ecosystem.',
date: 'Dec 2022', description2:
dateTime: '2022-12', '◯ Transition startups in our venture creator to community ownerships and ensure a successful exits for investors.',
date: 'Phase 4',
}, },
] ]
@ -33,23 +37,39 @@ export function HomeMilestones() {
return ( return (
<div className="bg-black py-24 sm:py-32"> <div className="bg-black py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8"> <div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto grid max-w-2xl grid-cols-1 gap-8 overflow-hidden lg:mx-0 lg:max-w-none lg:grid-cols-4"> <div className="mx-auto max-w-4xl lg:mx-0">
{timeline.map((item) => ( <p className="subtitle text-white">MILESTONES</p>
<div key={item.name}> <h2 className="mt-2 h2-default text-white">
<time dateTime={item.dateTime} className="flex items-center text-sm/6 font-semibold text-indigo-400"> Our Development Journey
<svg viewBox="0 0 4 4" aria-hidden="true" className="mr-4 size-1 flex-none"> </h2>
<circle r={2} cx={2} cy={2} fill="currentColor" /> <div className="lg:mx-0 max-w-2xl mt-6">
</svg> <p className="p-default text-gray-300">
{item.date} Transform the future join a revolutionary journey towards a decentralized digital world driven by collaboration and collective intelligence.
<div </p>
aria-hidden="true" </div>
className="absolute -ml-2 h-px w-screen -translate-x-full bg-white/20 sm:-ml-4 lg:static lg:-mr-6 lg:ml-8 lg:w-auto lg:flex-auto lg:translate-x-0" </div>
/> <div className="mx-auto grid max-w-2xl mt-12 grid-cols-1 gap-8 overflow-hidden lg:mx-0 lg:max-w-none lg:grid-cols-4">
</time> {timeline.map((item) => {
<p className="mt-6 text-lg/8 font-semibold tracking-tight text-white">{item.name}</p> const isCurrent = item.date === 'Current Phase'
<p className="mt-1 text-base/7 text-gray-300">{item.description}</p> return (
</div> <div key={item.name} className={`${isCurrent ? 'bg-white/5 ' : ''}`}>
))} <time className={`flex items-center text-sm/6 font-semibold ${isCurrent ? 'text-white' : 'text-white'}`}>
<svg viewBox="0 0 4 4" aria-hidden="true" className="mr-4 size-1 flex-none">
<circle r={2} cx={2} cy={2} fill="currentColor" />
</svg>
{item.date}
{isCurrent && <span className="ml-2 text-xs bg-white text-black px-2 py-1 rounded-full">ACTIVE</span>}
<div
aria-hidden="true"
className="absolute -ml-2 h-px w-screen -translate-x-full bg-white/20 sm:-ml-4 lg:static lg:-mr-6 lg:ml-8 lg:w-auto lg:flex-auto lg:translate-x-0"
/>
</time>
<p className={`mt-6 text-lg/8 font-semibold tracking-tight ${isCurrent ? 'text-white' : 'text-white'}`}>{item.name}</p>
<p className="mt-1 text-sm/7 text-gray-300 leading-relaxed">{item.description}</p>
<p className="mt-4 text-sm/7 text-gray-300 leading-relaxed">{item.description2}</p>
</div>
)
})}
</div> </div>
</div> </div>
</div> </div>