Skip to content

Commit 5ed3387

Browse files
authored
Merge pull request #89 from techulus/develop
Update landing page
2 parents 560985d + 641535f commit 5ed3387

File tree

4 files changed

+34
-11
lines changed

4 files changed

+34
-11
lines changed

apps/web/components/marketing/features.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
CashIcon,
44
ChartBarIcon,
55
CheckCircleIcon,
6+
CollectionIcon,
67
EyeOffIcon,
78
HeartIcon,
89
LightningBoltIcon,
@@ -29,6 +30,12 @@ export default function Features() {
2930
"Our pages are server side rendered, making them fast and search engine friendly.",
3031
icon: LightningBoltIcon,
3132
},
33+
{
34+
name: "Interactive Roadmaps",
35+
description:
36+
"Build public roadmaps with voting to engage your community and prioritize features together.",
37+
icon: CollectionIcon,
38+
},
3239
{
3340
name: "Notifications",
3441
description:
@@ -97,6 +104,10 @@ export default function Features() {
97104
<span className="underline decoration-red-500 text-white">
98105
changelog
99106
</span>{" "}
107+
and{" "}
108+
<span className="underline decoration-blue-500 text-white">
109+
roadmap
110+
</span>{" "}
100111
management.
101112
</p>
102113
</div>

apps/web/components/marketing/hero.tsx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ export default function Hero({ stars = null }: { stars?: string | null }) {
9494
</div>
9595
</div>
9696
<p className="mt-2 text-3xl font-semibold tracking-tight text-white sm:text-4xl hero">
97-
Changelogs made{" "}
97+
Changelogs{" "}
98+
<span className="underline decoration-blue-500 text-white">
99+
and roadmaps
100+
</span>{" "}
101+
made{" "}
98102
<span className="underline decoration-yellow-500 text-white">
99103
smarter, faster,
100104
</span>{" "}
@@ -105,10 +109,10 @@ export default function Hero({ stars = null }: { stars?: string | null }) {
105109
</p>
106110

107111
<p className="mt-6 text-lg leading-8 text-gray-300">
108-
Our open-source platform empowers you to publish and manage your
109-
changelog page. Notify users via email, encourage their feedback,
110-
track analytics on page visitors, and enjoy a host of additional
111-
features. Kickstart your page in just a few minutes!
112+
Our open-source platform empowers you to publish changelog pages and
113+
interactive roadmaps. Share what you&apos;ve built and what&apos;s coming next.
114+
Notify users via email, gather feedback with voting, track analytics,
115+
and enjoy a host of additional features. Kickstart your page in just a few minutes!
112116
</p>
113117

114118
<div className="mt-10 flex items-center gap-x-6">

apps/web/pages/index.tsx

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ export default function Index({ addons, unit_amount, stars }) {
1818
<div className="h-full dark:bg-gray-800">
1919
<Head>
2020
<title>
21-
Changes.page - Simple Changelog for Product Teams
21+
Changes.page - Changelog & Roadmap Platform for Product Teams
2222
</title>
2323
<meta
2424
name="description"
25-
content="Create beautiful release notes and notify users about product updates. Track engagement with built-in analytics. Start your free trial today."
25+
content="Create beautiful release notes and interactive roadmaps. Notify users about updates, gather feedback with voting, and track engagement with built-in analytics. Start your free trial today."
2626
/>
2727
{/* FAQ Schema for SEO */}
2828
<script
@@ -112,6 +112,14 @@ export default function Index({ addons, unit_amount, stars }) {
112112
text: "Yes, we use a markdown editor for writing posts in your page.",
113113
},
114114
},
115+
{
116+
"@type": "Question",
117+
name: "Do you support roadmaps?",
118+
acceptedAnswer: {
119+
"@type": "Answer",
120+
text: "Yes, you can create interactive roadmap boards with voting functionality to engage your community and prioritize features together.",
121+
},
122+
},
115123
],
116124
}),
117125
}}
@@ -201,7 +209,7 @@ export default function Index({ addons, unit_amount, stars }) {
201209
Customize
202210
</h3>
203211
<p className="mt-2 text-gray-500 dark:text-gray-300 text-base text-center">
204-
Add your branding, customize the design, and connect integrations.
212+
Add your branding, create roadmap boards, and connect integrations.
205213
</p>
206214
</div>
207215
{/* Connector */}
@@ -238,7 +246,7 @@ export default function Index({ addons, unit_amount, stars }) {
238246
Publish & Notify
239247
</h3>
240248
<p className="mt-2 text-gray-500 dark:text-gray-300 text-base text-center">
241-
Share updates, notify users via email or RSS, and track
249+
Share updates and roadmap progress, notify users via email or RSS, and track
242250
engagement with analytics.
243251
</p>
244252
</div>
@@ -276,7 +284,7 @@ export default function Index({ addons, unit_amount, stars }) {
276284
Product Managers
277285
</h3>
278286
<p className="text-gray-500 dark:text-gray-300 text-base">
279-
Announce releases, gather feedback, and drive adoption with
287+
Announce releases, share roadmaps with voting, gather feedback, and drive adoption with
280288
every update.
281289
</p>
282290
</div>

apps/web/pages/pages/[page_id]/roadmap/new.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default function NewRoadmapBoard({
113113
title: formData.title.trim(),
114114
description: formData.description.trim() || null,
115115
slug: formData.slug.trim(),
116-
is_public: true,
116+
is_public: false,
117117
})
118118
.select()
119119
.single();

0 commit comments

Comments
 (0)