1- import clsx from 'clsx' ;
2- import Heading from '@theme/Heading' ;
3- import styles from './styles.module.css' ;
1+ import clsx from 'clsx'
2+ import Heading from '@theme/Heading'
3+ import styles from './styles.module.css'
44
55type FeatureItem = {
6- title : string ;
7- Svg : React . ComponentType < React . ComponentProps < 'svg' > > ;
8- description : JSX . Element ;
9- } ;
6+ title : string
7+ Svg : React . ComponentType < React . ComponentProps < 'svg' > >
8+ description : JSX . Element
9+ }
1010
1111const FeatureList : FeatureItem [ ] = [
1212 {
1313 title : 'Easy to Use' ,
1414 Svg : require ( '@site/static/img/undraw_docusaurus_mountain.svg' ) . default ,
1515 description : (
1616 < >
17- Docusaurus was designed from the ground up to be easily installed and
18- used to get your website up and running quickly.
17+ Masarg is designed to be easy to use, easy to compose, and removes the hassle of hadling
18+ your CLI inputs. Focus on the core of your code!
1919 </ >
2020 ) ,
2121 } ,
2222 {
23- title : 'Focus on What Matters ' ,
23+ title : 'Do it with Style ' ,
2424 Svg : require ( '@site/static/img/undraw_docusaurus_tree.svg' ) . default ,
2525 description : (
2626 < >
27- Docusaurus lets you focus on your docs, and we'll do the chores. Go
28- ahead and move your docs into the < code > docs</ code > directory.
27+ Massarg provides a colorful, and fully themable CLI help interface. It also gives you
28+ automatic help for subcommands out-of-the-box, so your CLI app is always going to be
29+ accessible and appealing.
2930 </ >
3031 ) ,
3132 } ,
3233 {
33- title : 'Powered by React ' ,
34+ title : 'Flexibility is Key ' ,
3435 Svg : require ( '@site/static/img/undraw_docusaurus_react.svg' ) . default ,
3536 description : (
3637 < >
37- Extend or customize your website layout by reusing React. Docusaurus can
38- be extended while reusing the same header and footer.
38+ You can use Massarg to compose nested commands, pass the flags from top to bottom, and
39+ automate formatting your help text. Customize the colors, decide how to validate input, and
40+ more!
3941 </ >
4042 ) ,
4143 } ,
42- ] ;
44+ ]
4345
44- function Feature ( { title, Svg, description} : FeatureItem ) {
46+ function Feature ( { title, Svg, description } : FeatureItem ) {
4547 return (
4648 < div className = { clsx ( 'col col--4' ) } >
4749 < div className = "text--center" >
@@ -52,7 +54,7 @@ function Feature({title, Svg, description}: FeatureItem) {
5254 < p > { description } </ p >
5355 </ div >
5456 </ div >
55- ) ;
57+ )
5658}
5759
5860export default function HomepageFeatures ( ) : JSX . Element {
@@ -66,5 +68,5 @@ export default function HomepageFeatures(): JSX.Element {
6668 </ div >
6769 </ div >
6870 </ section >
69- ) ;
71+ )
7072}
0 commit comments