diff --git a/src/pages/Timeline.tsx b/src/pages/Timeline.tsx
index cff179c..1be0bbd 100644
--- a/src/pages/Timeline.tsx
+++ b/src/pages/Timeline.tsx
@@ -82,7 +82,7 @@ export default function TimelinePage() {
{Object.entries(phaseColors).map(([phase, color]) => (
))}
@@ -102,7 +102,7 @@ export default function TimelinePage() {
Project
{months.map((month, i) => (
-
+
{month} 2026
))}
@@ -114,26 +114,26 @@ export default function TimelinePage() {
{project.name}
-
{project.phase}
+
{project.phase}
{/* Background grid */}
{months.map((_, i) => (
-
+
))}
{/* Bar */}
{project.name}
{/* Milestones */}
{project.milestones.map((ms, mi) => (
-
+
@@ -159,7 +159,7 @@ export default function TimelinePage() {
{timelineProjects.flatMap(p => p.milestones.map(ms => ({ project: p.name, ...ms, color: p.color }))).sort((a, b) => a.month - b.month).map((ms, i) => (