diff --git a/public/images/rocket.gif b/public/images/rocket.gif new file mode 100644 index 000000000..d9fdba8d3 Binary files /dev/null and b/public/images/rocket.gif differ diff --git a/src/components/Changelog/ChangelogLaunch.astro b/src/components/Changelog/ChangelogLaunch.astro new file mode 100644 index 000000000..e4c39c3de --- /dev/null +++ b/src/components/Changelog/ChangelogLaunch.astro @@ -0,0 +1,33 @@ +--- +import { DateTime } from 'luxon'; + +const formattedDate = DateTime.fromISO('2024-09-13').toFormat('dd LLL, yyyy'); +--- + +
+ + +
+ + {formattedDate} + + + Changelog page is launched + +
+ +
+ +

Changelog page is launched

+

+ We will be sharing a selected list of updates, improvements, and fixes made to + the website. Stay tuned! +

+
+
diff --git a/src/data/changelogs/leaderboard-page.md b/src/data/changelogs/leaderboard-page.md index 4909322fb..3a8771f24 100644 --- a/src/data/changelogs/leaderboard-page.md +++ b/src/data/changelogs/leaderboard-page.md @@ -8,10 +8,10 @@ images: seo: title: 'Leaderboard Page - roadmap.sh' description: '' -date: 2024-09-13 +date: 2024-09-17 --- -TL;DR: new dashboard, leaderboard page and projects page. +Focus for this week was improving the user experience and adding new features to the platform. Here are the highlights: - New dashboard for logged-in users - New leaderboard page @@ -20,7 +20,7 @@ TL;DR: new dashboard, leaderboard page and projects page. - Frontend and backend content improvements - Bug fixes -We just launched a dedicated dashboard for logged-in users to showing progress, projects, bookmarks and more. You can still access the old homepage by visiting [this page](https://roadmap.sh/home). +[Dashboard](/) would allow logged-in users to keep track of their bookmarks, learning progress, project and more. You can still visit the [old homepage](https://roadmap.sh/home) once you login. We also launched a new [leaderboard page](/leaderboard) showing the most active users, users who completed most projects and more. diff --git a/src/data/changelogs/new-dashboard-page.md b/src/data/changelogs/new-dashboard-page.md deleted file mode 100644 index c0091731d..000000000 --- a/src/data/changelogs/new-dashboard-page.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: 'New Dashboard Page' -description: 'We have added a new dashboard page to help you track your progress' -seo: - title: 'New Dashboard Page - roadmap.sh' - description: 'We have added a new dashboard page to help you track your progress' -date: 2024-09-12 ---- - -We have revamped the dashboard page for logged-in users. The new dashboard page will help you track your progress and see your overall progress in a single view. We have also added a new progress bar to help you visualize your progress. - -If you want to access the guest homepage, you check check it out [here](/home). diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro index b7ca03dde..e6c6df5c8 100644 --- a/src/pages/changelog.astro +++ b/src/pages/changelog.astro @@ -3,6 +3,7 @@ import SimplePageHeader from '../components/SimplePageHeader.astro'; import BaseLayout from '../layouts/BaseLayout.astro'; import { getAllChangelogs } from '../lib/changelog'; import ChangelogItem from '../components/Changelog/ChangelogItem.astro'; +import ChangelogLaunch from '../components/Changelog/ChangelogLaunch.astro'; const allChangelogs = await getAllChangelogs(); --- @@ -38,6 +39,8 @@ const allChangelogs = await getAllChangelogs(); )) } + +