Skip to content

Commit 1da2355

Browse files
committed
Drop links to documentation in landing page
1 parent a608c4c commit 1da2355

File tree

1 file changed

+1
-13
lines changed
  • site/src/components/HomepageFeatures

1 file changed

+1
-13
lines changed

site/src/components/HomepageFeatures/index.tsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ const FeatureList: FeatureItem[] = [
2525
confirmed with minimal delays for a seamless user experience.
2626
</>
2727
),
28-
button: {
29-
text: "Link to Documentation",
30-
url: "/docs/development/overview",
31-
},
3228
},
3329
{
3430
title: "Secure",
@@ -39,19 +35,11 @@ const FeatureList: FeatureItem[] = [
3935
against attacks while ensuring fair participation.
4036
</>
4137
),
42-
button: {
43-
text: "Link to Documentation",
44-
url: "/docs/development/overview",
45-
},
4638
},
4739
{
4840
title: "Flexible",
4941
Svg: FlexibleSvg,
5042
description: <>Ouroboros Leios supports diverse applications.</>,
51-
button: {
52-
text: "Link to Documentation",
53-
url: "/docs/development/overview",
54-
},
5543
},
5644
];
5745

@@ -65,7 +53,7 @@ function Feature({ Svg, title, description, button }: FeatureItem) {
6553
<p>{description}</p>
6654
</div>
6755
</div>
68-
<LinkButton text={button.text} url={button.url} />
56+
{button ? <LinkButton text={button.text} url={button.url} /> : null}
6957
</div>
7058
);
7159
}

0 commit comments

Comments
 (0)