From 0aa50b23764972af21b651d4a8ea15a24330fc64 Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Sat, 13 Sep 2025 20:09:49 +1000 Subject: [PATCH 1/3] Update landing page --- apps/web/components/marketing/features.tsx | 7 ------- apps/web/components/marketing/hero.tsx | 14 +++++++++----- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/apps/web/components/marketing/features.tsx b/apps/web/components/marketing/features.tsx index 5f8d9a4..09a8ce9 100644 --- a/apps/web/components/marketing/features.tsx +++ b/apps/web/components/marketing/features.tsx @@ -4,7 +4,6 @@ import { ChartBarIcon, CheckCircleIcon, CollectionIcon, - EyeOffIcon, HeartIcon, LightningBoltIcon, MailIcon, @@ -66,12 +65,6 @@ export default function Features() { "Your page is available in plain text, JSON and markdown format letting you easily embed it anywhere.", icon: HeartIcon, }, - { - name: "Privacy", - description: - "You can create private changelog pages that are hidden from serach engines.", - icon: EyeOffIcon, - }, { name: "Wallet-friendly", description: diff --git a/apps/web/components/marketing/hero.tsx b/apps/web/components/marketing/hero.tsx index 3ae220f..4f0c861 100644 --- a/apps/web/components/marketing/hero.tsx +++ b/apps/web/components/marketing/hero.tsx @@ -94,9 +94,12 @@ export default function Hero({ stars = null }: { stars?: string | null }) {

- Changelogs{" "} - and roadmaps + Changelogs + {" "} + and{" "} + + roadmaps {" "} made{" "} @@ -110,9 +113,10 @@ export default function Hero({ stars = null }: { stars?: string | null }) {

Our open-source platform empowers you to publish changelog pages and - interactive roadmaps. Share what you've built and what's coming next. - Notify users via email, gather feedback with voting, track analytics, - and enjoy a host of additional features. Kickstart your page in just a few minutes! + interactive roadmaps. Share what you've built and what's + coming next. Notify users via email, gather feedback with voting, + track analytics, and enjoy a host of additional features. Kickstart + your page in just a few minutes!

From 66bb794e778b6657612d1944f9e7353da2eb30d2 Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Sat, 13 Sep 2025 23:34:13 +1000 Subject: [PATCH 2/3] Update roadmap item modal on mobile --- .../_sites/[site]/roadmap/[roadmap_slug].tsx | 296 +++++++++--------- 1 file changed, 156 insertions(+), 140 deletions(-) diff --git a/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx b/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx index a84f281..71423df 100644 --- a/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx +++ b/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx @@ -348,168 +348,184 @@ export default function RoadmapPage({ leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" >
+ {/* Desktop Close Button */} - -
- {/* Column Divider */} -
- - {/* Left side - Content */} -
-

- {selectedItem?.title} -

- {selectedItem?.description && ( -
-
- + + {/* Mobile Header with Close Button */} +
+

+ {selectedItem?.title} +

+ +
+ +
+ {/* Column Divider */} +
+ + {/* Left side - Content */} +
+

+ {selectedItem?.title} +

+ {selectedItem?.description && ( +
+
+ - {selectedItem.description} - -
+ }, + ], + ]} + remarkPlugins={[remarkGfm]} + > + {selectedItem.description} +
- )} +
+ )} +
+ + {/* Right side - Metadata */} +
+ {/* Votes */} +
+ + Votes + +
- {/* Right side - Metadata */} -
- {/* Votes */} + {/* Status (Column) */} + {selectedItem?.column_id && (
- Votes + Status + + + {columns.find( + (col) => col.id === selectedItem.column_id + )?.name || "Unknown"} -
+ )} - {/* Status (Column) */} - {selectedItem?.column_id && ( -
- - Status - - - {columns.find( - (col) => col.id === selectedItem.column_id - )?.name || "Unknown"} - -
- )} - - {/* Category */} - {selectedItem?.roadmap_categories && ( -
- - Category - - - {selectedItem.roadmap_categories.name} - -
- )} - - {/* Board */} + {/* Category */} + {selectedItem?.roadmap_categories && (
- Board + Category - - {board.title} + + {selectedItem.roadmap_categories.name}
- - {/* Created Date */} - {selectedItem?.created_at && ( -
- - Created - - - {new Date( - selectedItem.created_at - ).toLocaleDateString("en-US", { - year: "numeric", - month: "long", - day: "numeric", - })} - -
- )} + )} + + {/* Board */} +
+ + Board + + + {board.title} +
+ + {/* Created Date */} + {selectedItem?.created_at && ( +
+ + Created + + + {new Date( + selectedItem.created_at + ).toLocaleDateString("en-US", { + year: "numeric", + month: "long", + day: "numeric", + })} + +
+ )}
- +
+
From 5e5c413017477e8fb77540a678d3db01d838dfa2 Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Sat, 13 Sep 2025 23:42:21 +1000 Subject: [PATCH 3/3] Fix mobile modal width --- apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx b/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx index 71423df..0590152 100644 --- a/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx +++ b/apps/page/pages/_sites/[site]/roadmap/[roadmap_slug].tsx @@ -347,7 +347,7 @@ export default function RoadmapPage({ leaveFrom="opacity-100 translate-y-0 sm:scale-100" leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" > -
+
{/* Desktop Close Button */}