|
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"; |
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: 'Easy to Use', |
14 |
| - Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, |
| 13 | + title: "Easy to use", |
| 14 | + Svg: require("@site/static/img/2.svg").default, |
15 | 15 | description: (
|
16 | 16 | <>
|
17 |
| - Docusaurus was designed from the ground up to be easily installed and |
18 |
| - used to get your website up and running quickly. |
| 17 | + Docusaurus is a modern static site generator. It is easy to use and |
| 18 | + allows us to create a documentation tool for current and future |
| 19 | + colleagues. |
19 | 20 | </>
|
20 | 21 | ),
|
21 | 22 | },
|
22 | 23 | {
|
23 |
| - title: 'Focus on What Matters', |
24 |
| - Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, |
| 24 | + title: "Easy to learn", |
| 25 | + Svg: require("@site/static/img/3.svg").default, |
25 | 26 | description: (
|
26 | 27 | <>
|
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. |
| 28 | + Based on user-friendly documentation, students can easily learn the |
| 29 | + important concepts of software development and open-source. |
29 | 30 | </>
|
30 | 31 | ),
|
31 | 32 | },
|
32 | 33 | {
|
33 |
| - title: 'Powered by React', |
34 |
| - Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, |
| 34 | + title: "Contributions", |
| 35 | + Svg: require("@site/static/img/4.svg").default, |
35 | 36 | description: (
|
36 | 37 | <>
|
37 |
| - Extend or customize your website layout by reusing React. Docusaurus can |
38 |
| - be extended while reusing the same header and footer. |
| 38 | + Contribute your knowledge to the community for future colleagues who may |
| 39 | + struggle to join the open-source community and projects. |
39 | 40 | </>
|
40 | 41 | ),
|
41 | 42 | },
|
42 | 43 | ];
|
43 | 44 |
|
44 |
| -function Feature({title, Svg, description}: FeatureItem) { |
| 45 | +function Feature({ title, Svg, description }: FeatureItem) { |
45 | 46 | return (
|
46 |
| - <div className={clsx('col col--4')}> |
| 47 | + <div className={clsx("col col--4")}> |
47 | 48 | <div className="text--center">
|
48 | 49 | <Svg className={styles.featureSvg} role="img" />
|
49 | 50 | </div>
|
|
0 commit comments