Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions apps/web/components/marketing/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
CashIcon,
ChartBarIcon,
CheckCircleIcon,
CollectionIcon,
EyeOffIcon,
HeartIcon,
LightningBoltIcon,
Expand All @@ -29,6 +30,12 @@ export default function Features() {
"Our pages are server side rendered, making them fast and search engine friendly.",
icon: LightningBoltIcon,
},
{
name: "Interactive Roadmaps",
description:
"Build public roadmaps with voting to engage your community and prioritize features together.",
icon: CollectionIcon,
},
{
name: "Notifications",
description:
Expand Down Expand Up @@ -97,6 +104,10 @@ export default function Features() {
<span className="underline decoration-red-500 text-white">
changelog
</span>{" "}
and{" "}
<span className="underline decoration-blue-500 text-white">
roadmap
</span>{" "}
management.
</p>
</div>
Expand Down
14 changes: 9 additions & 5 deletions apps/web/components/marketing/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ export default function Hero({ stars = null }: { stars?: string | null }) {
</div>
</div>
<p className="mt-2 text-3xl font-semibold tracking-tight text-white sm:text-4xl hero">
Changelogs made{" "}
Changelogs{" "}
<span className="underline decoration-blue-500 text-white">
and roadmaps
</span>{" "}
made{" "}
<span className="underline decoration-yellow-500 text-white">
smarter, faster,
</span>{" "}
Expand All @@ -105,10 +109,10 @@ export default function Hero({ stars = null }: { stars?: string | null }) {
</p>

<p className="mt-6 text-lg leading-8 text-gray-300">
Our open-source platform empowers you to publish and manage your
changelog page. Notify users via email, encourage their feedback,
track analytics on page visitors, and enjoy a host of additional
features. Kickstart your page in just a few minutes!
Our open-source platform empowers you to publish changelog pages and
interactive roadmaps. Share what you&apos;ve built and what&apos;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!
</p>

<div className="mt-10 flex items-center gap-x-6">
Expand Down
18 changes: 13 additions & 5 deletions apps/web/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default function Index({ addons, unit_amount, stars }) {
<div className="h-full dark:bg-gray-800">
<Head>
<title>
Changes.page - Simple Changelog for Product Teams
Changes.page - Changelog & Roadmap Platform for Product Teams
</title>
<meta
name="description"
content="Create beautiful release notes and notify users about product updates. Track engagement with built-in analytics. Start your free trial today."
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."
/>
{/* FAQ Schema for SEO */}
<script
Expand Down Expand Up @@ -112,6 +112,14 @@ export default function Index({ addons, unit_amount, stars }) {
text: "Yes, we use a markdown editor for writing posts in your page.",
},
},
{
"@type": "Question",
name: "Do you support roadmaps?",
acceptedAnswer: {
"@type": "Answer",
text: "Yes, you can create interactive roadmap boards with voting functionality to engage your community and prioritize features together.",
},
},
],
}),
}}
Expand Down Expand Up @@ -201,7 +209,7 @@ export default function Index({ addons, unit_amount, stars }) {
Customize
</h3>
<p className="mt-2 text-gray-500 dark:text-gray-300 text-base text-center">
Add your branding, customize the design, and connect integrations.
Add your branding, create roadmap boards, and connect integrations.
</p>
</div>
{/* Connector */}
Expand Down Expand Up @@ -238,7 +246,7 @@ export default function Index({ addons, unit_amount, stars }) {
Publish & Notify
</h3>
<p className="mt-2 text-gray-500 dark:text-gray-300 text-base text-center">
Share updates, notify users via email or RSS, and track
Share updates and roadmap progress, notify users via email or RSS, and track
engagement with analytics.
</p>
</div>
Expand Down Expand Up @@ -276,7 +284,7 @@ export default function Index({ addons, unit_amount, stars }) {
Product Managers
</h3>
<p className="text-gray-500 dark:text-gray-300 text-base">
Announce releases, gather feedback, and drive adoption with
Announce releases, share roadmaps with voting, gather feedback, and drive adoption with
every update.
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/pages/pages/[page_id]/roadmap/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default function NewRoadmapBoard({
title: formData.title.trim(),
description: formData.description.trim() || null,
slug: formData.slug.trim(),
is_public: true,
is_public: false,
})
.select()
.single();
Expand Down