Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions src/components/network-upgrade/HegotaTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,18 @@ export const HegotaTimeline: React.FC = () => {
</div>

{/* Content */}
<div className="flex-1">
<h4 className="font-medium text-slate-900 dark:text-slate-100 text-sm mb-1">{phase.title}</h4>
<p className="text-xs text-slate-600 dark:text-slate-300 mb-2">{phase.description}</p>
<div className="flex-1 flex items-start justify-between gap-4">
<div className="flex-1 min-w-0">
<h4 className="font-medium text-slate-900 dark:text-slate-100 text-sm mb-1">{phase.title}</h4>
<p className="text-xs text-slate-600 dark:text-slate-300 mb-2 leading-relaxed">{phase.description}</p>
</div>

{/* Date on the right */}
<div className="flex-shrink-0">
<span className="text-xs text-slate-500 dark:text-slate-400 font-medium">
{phase.dateRange}
</span>
</div>
</div>
</div>
))}
Expand Down
10 changes: 5 additions & 5 deletions src/constants/timeline-phases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,35 +117,35 @@ export const HEGOTA_TIMELINE_PHASES: TimelinePhase[] = [
{
id: 'fork-focus',
title: 'Fork Focus Discussion & Headliner Proposals',
dateRange: 'Date TBD',
dateRange: 'Jan 8 - Feb 4',
description: 'ACD calls focus on discussing Hegotá\'s high-level goals. Headliner champions present proposals.',
status: 'current'
},
{
id: 'headliner-discussion',
title: 'Headliner Discussion & Finalization',
dateRange: 'Date TBD',
dateRange: 'Feb 5 - Feb 26',
description: 'ACD evaluates candidate headliners, solicits community feedback, and finalizes decisions.',
status: 'upcoming'
},
{
id: 'non-headliner-proposals',
title: 'Non-Headliner EIP Proposals',
dateRange: 'Date TBD',
dateRange: 'TBD',
description: 'Non-headliner EIPs can now be proposed for inclusion in Hegotá.',
status: 'upcoming'
},
{
id: 'cfi-decisions',
title: 'Non-Headliner EIP CFI Decisions',
dateRange: 'Date TBD',
dateRange: 'TBD',
description: 'ACDC and ACDE calls select which Proposed for Inclusion EIPs advance to Considered for Inclusion.',
status: 'upcoming'
},
{
id: 'cfi-to-sfi',
title: 'CFI → SFI EIP Decisions',
dateRange: 'Date TBD',
dateRange: 'TBD',
description: 'As Hegotá devnets begin, final decisions on which CFI EIPs will be included in the upgrade\'s devnet.',
status: 'upcoming'
}
Expand Down
2 changes: 1 addition & 1 deletion src/data/upgrades.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const networkUpgrades: NetworkUpgrade[] = [
id: 'hegota',
path: '/upgrade/hegota',
name: 'Hegotá Upgrade',
description: 'Future network upgrade currently in early planning stages. Named after the combination of "Heg" (consensus layer upgrade, named after a star) and "Bogotá" (execution layer upgrade, named after a Devcon location).',
description: 'Future network upgrade currently in early planning stages. Named after the combination of "Heze" (consensus layer upgrade, named after a star) and "Bogotá" (execution layer upgrade, named after a Devcon location).',
tagline: 'Post-Glamsterdam network upgrade in early planning.',
status: 'Planning',
activationDate: 'TBD',
Expand Down