Skip to content

Commit

Permalink
docs: improve descriptions, make them not clickable (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
openoms authored Sep 10, 2024
1 parent f0506bd commit a6ed823
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions website/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ const FeatureList: FeatureItem[] = [
image: require("@site/static/img/embeddable-logo.png").default,
description: (
<>
Cala is fully embeddable, allowing it to seamlessly integrate into any
software, enhancing your existing systems.
Cala is fully embeddable, capable of being used as a library not
requiring its own runtime.
</>
),
link: "https://docs.rs/cala-ledger/latest/cala_ledger/",
Expand All @@ -61,7 +61,8 @@ const FeatureList: FeatureItem[] = [
image: require("@site/static/img/run-anywhere-logo.png").default,
description: (
<>
Can serve you in the cloud, on your own server or locally as you need.
Can serve as a standalone application in the cloud, on your own server,
or locally as you need.
</>
),
link: "https://github.com/GaloyMoney/cala?tab=readme-ov-file#cala",
Expand Down Expand Up @@ -93,11 +94,7 @@ function Feature({ title, image, description, link }: FeatureItem) {
{title}
</a>
</Heading>
<p>
<a href={link} className="noUnderline">
{description}
</a>
</p>
<p>{description}</p>
</div>
</div>
);
Expand Down

0 comments on commit a6ed823

Please sign in to comment.