diff --git a/docs/static/assets/js/gantt_chart.js b/docs/static/assets/js/gantt_chart.js
index 3eaca46cc83619371f0a28a8f1850695ad466179..d13d84f6a2eefdbf644e56cae9f903fa3d641300 100644
--- a/docs/static/assets/js/gantt_chart.js
+++ b/docs/static/assets/js/gantt_chart.js
@@ -20,20 +20,20 @@ export function onRouteDidUpdate({location, previousLocation}) {
     const milestones = [
       {
         name: "WordPress Lite",
-        start: new Date("2024-10-01"),
+        start: new Date("2024-11-01"),
         end: new Date("2025-05-31"),
         internal: false,
       },
       {
         name: "WordPress MVP",
-        start: new Date("2024-12-01"),
-        end: new Date("2025-03-31"),
+        start: new Date("2025-01-01"),
+        end: new Date("2025-02-31"),
         internal: true,
       },
       {
         name: "WordPress Pilot",
         start: new Date("2025-03-01"),
-        end: new Date("2025-05-31"),
+        end: new Date("2025-04-31"),
         internal: true,
       },
       {
@@ -150,7 +150,7 @@ export function onRouteDidUpdate({location, previousLocation}) {
     });
 
     // Draw today's date line
-    const today = new Date("2024-08-19");
+    const today = new Date();
     const todayX = margin.left + timeScale(today);
     ctx.strokeStyle = "#FF6B6B";
     ctx.lineWidth = 2;