Skip to content

Commit d230eb0

Browse files
committed
docs: update
1 parent 5723ea3 commit d230eb0

2 files changed

Lines changed: 26 additions & 24 deletions

File tree

docs/docusaurus.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,15 @@ const config: Config = {
135135
],
136136
},
137137
{
138-
title: 'Community',
138+
title: 'More from @casraf',
139139
items: [
140140
{
141-
label: 'Stack Overflow',
142-
href: 'https://stackoverflow.com/questions/tagged/massarg',
141+
label: 'Simple Scaffold - Easy codegen tool',
142+
href: 'https://chenasraf.github.io/simple-scaffold',
143143
},
144144
{
145-
label: 'Discord',
146-
href: 'https://discordapp.com/invite/docusaurus',
145+
label: 'Website',
146+
href: 'https://casraf.dev',
147147
},
148148
],
149149
},
Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,49 @@
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

55
type 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

1111
const 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&apos;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

5860
export 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

Comments
 (0)