diff --git a/ui/src/pages/About/components/Features.tsx b/ui/src/pages/About/components/Features.tsx index 95210eb9..f72a9fcd 100644 --- a/ui/src/pages/About/components/Features.tsx +++ b/ui/src/pages/About/components/Features.tsx @@ -1,62 +1,67 @@ import { FC } from "react"; -import { Card, Space, Tag } from "antd"; +import {List, Card, Space, Tag } from "antd"; import { FEATURE_DATA } from "data/featureData"; import "react-responsive-carousel/lib/styles/carousel.min.css"; // requires a loader import { Carousel } from "react-responsive-carousel"; const Features: FC = () => { return ( - - {FEATURE_DATA.filter((feature) => !feature.in_progress).map( - (feature, index) => ( - Features} bordered> + + + {FEATURE_DATA.filter((feature) => !feature.in_progress).map( + (feature, index) => ( + +
+ {index} - {feature.name} +
+ + } + actions={[ + + {feature.library.map((lib) => { + return ( + + + {lib.name} + + + ); + })} + , + ]} > -
- {index} - {feature.name} -
- - } - actions={[ - - {feature.library.map((lib) => { - return ( - - - {lib.name} - - - ); - })} - , - ]} - > - {feature.fullDescription.length > 0 - ? feature.fullDescription - : feature.shortDescription} -
-
-
- ) - )} -
+ {feature.fullDescription.length > 0 + ? feature.fullDescription + : feature.shortDescription} +
+
+
+ ) + )} +
+ + ); };