Skip to content

Commit 57c0410

Browse files
committed
site: update hero page
1 parent 46fa596 commit 57c0410

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

site/docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Config } from "@docusaurus/types";
33
import { themes as prismThemes } from "prism-react-renderer";
44

55
const config: Config = {
6-
title: "Leios",
6+
title: "Ouroboros Leios",
77
tagline: "A high-throughput protocol for Cardano",
88
favicon: "img/wave-logo.ico",
99

@@ -110,11 +110,11 @@ const config: Config = {
110110
to: "/docs/intro",
111111
},
112112
{
113-
label: "Protocol Overview",
113+
label: "Protocol overview",
114114
to: "/docs/protocol-overview",
115115
},
116116
{
117-
label: "How It Works",
117+
label: "How it works",
118118
to: "/docs/how-it-works",
119119
},
120120
{

site/src/components/HomepageFeatures/index.tsx

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,49 @@
1-
import clsx from 'clsx';
2-
import Heading from '@theme/Heading';
3-
import styles from './styles.module.css';
1+
import Heading from "@theme/Heading";
2+
import clsx from "clsx";
3+
import styles from "./styles.module.css";
44

55
type FeatureItem = {
66
title: string;
7-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
7+
Svg: React.ComponentType<React.ComponentProps<"svg">>;
88
description: JSX.Element;
99
};
1010

1111
const FeatureList: FeatureItem[] = [
1212
{
13-
title: 'Heavy duty',
14-
Svg: require('@site/static/img/cargo-ship.svg').default,
13+
title: "Scalable",
14+
Svg: require("@site/static/img/cargo-ship.svg").default,
1515
description: (
1616
<>
17-
Ouroboros Leios is designed to maximise the use of available network bandwidth and therefore maximise overall throughput of the network.
17+
Optimizes network bandwidth for faster transaction processing,
18+
significantly enhancing Cardano’s scalability. Transactions are
19+
confirmed with minimal delays for a seamless user experience.
1820
</>
1921
),
2022
},
2123
{
22-
title: 'Secure',
23-
Svg: require('@site/static/img/safe.svg').default,
24+
title: "Secure",
25+
Svg: require("@site/static/img/safe.svg").default,
2426
description: (
2527
<>
26-
Ouroboros Leios maintains the strong security properties of the Ouroboros family of protocols.
28+
Preserves Ouroboros' strong security properties with robust
29+
defenses against attacks while ensuring fair participation.
2730
</>
2831
),
2932
},
3033
{
31-
title: 'Flexible',
32-
Svg: require('@site/static/img/socket-chord.svg').default,
34+
title: "Flexible",
35+
Svg: require("@site/static/img/socket-chord.svg").default,
3336
description: (
3437
<>
35-
Being agnostic of the underlying Nakomoto consensus protocol, Ouroboros Leios can support a wide range of applications.
38+
Ouroboros Leios supports diverse applications.
3639
</>
3740
),
3841
},
3942
];
4043

4144
function Feature({ title, Svg, description }: FeatureItem) {
4245
return (
43-
<div className={clsx('col col--4')}>
46+
<div className={clsx("col col--4")}>
4447
<div className="text--center">
4548
<Svg className={styles.featureSvg} role="img" />
4649
</div>

0 commit comments

Comments
 (0)