| 
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";  | 
4 | 4 | 
 
  | 
5 | 5 | type FeatureItem = {  | 
6 | 6 |     title: string;  | 
7 |  | -    Svg: React.ComponentType<React.ComponentProps<'svg'>>;  | 
 | 7 | +    Svg: React.ComponentType<React.ComponentProps<"svg">>;  | 
8 | 8 |     description: JSX.Element;  | 
9 | 9 | };  | 
10 | 10 | 
 
  | 
11 | 11 | const FeatureList: FeatureItem[] = [  | 
12 | 12 |     {  | 
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,  | 
15 | 15 |         description: (  | 
16 | 16 |             <>  | 
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.  | 
18 | 20 |             </>  | 
19 | 21 |         ),  | 
20 | 22 |     },  | 
21 | 23 |     {  | 
22 |  | -        title: 'Secure',  | 
23 |  | -        Svg: require('@site/static/img/safe.svg').default,  | 
 | 24 | +        title: "Secure",  | 
 | 25 | +        Svg: require("@site/static/img/safe.svg").default,  | 
24 | 26 |         description: (  | 
25 | 27 |             <>  | 
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.  | 
27 | 30 |             </>  | 
28 | 31 |         ),  | 
29 | 32 |     },  | 
30 | 33 |     {  | 
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,  | 
33 | 36 |         description: (  | 
34 | 37 |             <>  | 
35 |  | -                Being agnostic of the underlying Nakomoto consensus protocol, Ouroboros Leios can support a wide range of applications.  | 
 | 38 | +                Ouroboros Leios supports diverse applications.  | 
36 | 39 |             </>  | 
37 | 40 |         ),  | 
38 | 41 |     },  | 
39 | 42 | ];  | 
40 | 43 | 
 
  | 
41 | 44 | function Feature({ title, Svg, description }: FeatureItem) {  | 
42 | 45 |     return (  | 
43 |  | -        <div className={clsx('col col--4')}>  | 
 | 46 | +        <div className={clsx("col col--4")}>  | 
44 | 47 |             <div className="text--center">  | 
45 | 48 |                 <Svg className={styles.featureSvg} role="img" />  | 
46 | 49 |             </div>  | 
 | 
0 commit comments