Skip to content

Commit 2ef2766

Browse files
Improve texts in landing page
1 parent 39a1deb commit 2ef2766

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

web/src/app/page.tsx

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ export default function Home() {
130130
animate={{ y: 0, opacity: 1 }}
131131
transition={{ duration: 0.8, delay: 0.4 }}
132132
>
133-
Create Contribution Accounting Tokens (CATs) <br />
134-
to track contributions to your projects.
133+
Track contributions to your projects using <br />
134+
Contribution Accounting Tokens (CATs)
135135
</motion.p>
136136

137137
<motion.div
@@ -247,21 +247,21 @@ export default function Home() {
247247
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8 relative">
248248
{[
249249
{
250-
step: "01",
251-
title: "Launch Your CAT",
252-
detail: "Define the maximum token supply, set thresholds, and manage controlled expansion to ensure token stability and value.",
250+
step: "1",
251+
title: "Setup",
252+
detail: "Define the maximum token supply and maximum supply expansion rate to prevent excessive dillution and ensure token stability.",
253253
gradient: "from-blue-500 to-blue-600 dark:from-yellow-400 dark:to-yellow-500"
254254
},
255255
{
256-
step: "02",
257-
title: "Control Token Distribution",
258-
detail: "Grant and revoke minter roles to trusted contributors, ensuring only authorized members can create new tokens for the community.",
256+
step: "2",
257+
title: "Token Distribution",
258+
detail: "Grant revokable minter role to trusted contributors, to authorize them to mint tokens for the community within the defined bounds.",
259259
gradient: "from-purple-500 to-purple-600 dark:from-yellow-500 dark:to-yellow-600"
260260
},
261261
{
262-
step: "03",
263-
title: "Restrict Token Transfers",
264-
detail: "Initially, tokens can only be transferred to addresses that already hold them, preventing speculation while building your core community.",
262+
step: "3",
263+
title: "Token Transfers",
264+
detail: "Initially, tokens are only transferrable between addresses that already hold them, preventing speculation while building your core contributor community. Enable unrestricted token transfers at any time when ready.",
265265
gradient: "from-indigo-500 to-indigo-600 dark:from-yellow-600 dark:to-yellow-700"
266266
}
267267
].map((step, index) => (
@@ -337,7 +337,7 @@ export default function Home() {
337337
transition={{ duration: 0.6, delay: 0.8 }}
338338
viewport={{ once: true }}
339339
>
340-
Perfect Use Cases
340+
Why CATs
341341
</motion.h3>
342342
<motion.p
343343
className="text-gray-600 dark:text-gray-300 mb-12 max-w-3xl mx-auto text-lg font-medium leading-relaxed"
@@ -346,29 +346,31 @@ export default function Home() {
346346
transition={{ duration: 0.6, delay: 1.0 }}
347347
viewport={{ once: true }}
348348
>
349-
Where CATs shine brightest - turning collaboration into ownership
349+
CATs are proof-of-contribution tokens, rewarding collaboration with ownership. <br />
350+
CATs shine brightest in projects that require cooperation and proper accounting of contributions. <br />
351+
Typical use cases include:
350352
</motion.p>
351353

352354
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
353355
{[
354356
{
355-
title: "Open Source Projects",
356-
explanation: "Reward developers for coding, bug fixing, documentation, and improving the projects impact.",
357+
title: "Open Source Software Development",
358+
explanation: "Developers can reward themselves for coding, fixing bugs, writing documentation and improving a project's impact.",
357359
gradient: "from-blue-500 to-blue-600 dark:from-yellow-400 dark:to-yellow-500"
358360
},
359361
{
360-
title: "Creative Collaboratives",
361-
explanation: "Artists, musicians, and content creators can fairly share ownership according to their creative input and effort.",
362+
title: "Collaborative Creativity",
363+
explanation: "Artists, musicians and content creators can share ownership according to the value of their creative input.",
362364
gradient: "from-blue-500 to-blue-600 dark:from-yellow-500 dark:to-yellow-600"
363365
},
364366
{
365367
title: "Event Management",
366-
explanation: "Recognize and reward event organizers, volunteers, and promoters for making events successful and engaging.",
368+
explanation: "Event organizers, volunteers and promoters can recognize their efforts for making events successful and engaging.",
367369
gradient: "from-blue-500 to-blue-600 dark:from-yellow-400 dark:to-yellow-500"
368370
},
369371
{
370-
title: "Community DAOs",
371-
explanation: "Give community members fair governance rights and influence based on their active participation and contributions.",
372+
title: "Governance-Based DAOs",
373+
explanation: "Community members can give themselves fair governance rights and influence based on their active participation.",
372374
gradient: "from-blue-500 to-blue-600 dark:from-yellow-500 dark:to-yellow-600"
373375
}
374376
].map((useCase, index) => (

0 commit comments

Comments
 (0)