|
1 |
| -import React from 'react'; |
2 |
| -import clsx from 'clsx'; |
3 |
| -import styles from './styles.module.css'; |
| 1 | +import React from "react"; |
| 2 | +import clsx from "clsx"; |
| 3 | +import styles from "./styles.module.css"; |
4 | 4 |
|
5 | 5 | const FeatureList = [
|
6 | 6 | {
|
7 |
| - title: 'Easy to Use', |
8 |
| - Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, |
| 7 | + title: "Everything you need", |
| 8 | + Svg: require("@site/static/img/product-dev.svg").default, |
9 | 9 | description: (
|
10 | 10 | <>
|
11 |
| - Docusaurus was designed from the ground up to be easily installed and |
12 |
| - used to get your website up and running quickly. |
| 11 | + Learn Flask, Docker, PostgreSQL, and more. Build professional-grade REST |
| 12 | + APIs with Python. |
13 | 13 | </>
|
14 | 14 | ),
|
15 | 15 | },
|
16 | 16 | {
|
17 |
| - title: 'Focus on What Matters', |
18 |
| - Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, |
| 17 | + title: "The latest versions", |
| 18 | + Svg: require("@site/static/img/cloud-download.svg").default, |
19 | 19 | description: (
|
20 | 20 | <>
|
21 |
| - Docusaurus lets you focus on your docs, and we'll do the chores. Go |
22 |
| - ahead and move your docs into the <code>docs</code> directory. |
| 21 | + No more outdated tutorials. Use Python 3.10+ and the latest versions of |
| 22 | + every Flask extension and library. |
23 | 23 | </>
|
24 | 24 | ),
|
25 | 25 | },
|
26 | 26 | {
|
27 |
| - title: 'Powered by React', |
28 |
| - Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, |
| 27 | + title: "Use best practices", |
| 28 | + Svg: require("@site/static/img/robot-coding.svg").default, |
29 | 29 | description: (
|
30 | 30 | <>
|
31 |
| - Extend or customize your website layout by reusing React. Docusaurus can |
32 |
| - be extended while reusing the same header and footer. |
| 31 | + Run your apps in Docker, host your code with Git, write documentation |
| 32 | + with Swagger, and test your APIs while developing. |
33 | 33 | </>
|
34 | 34 | ),
|
35 | 35 | },
|
36 | 36 | ];
|
37 | 37 |
|
38 |
| -function Feature({Svg, title, description}) { |
| 38 | +function Feature({ Svg, title, description }) { |
39 | 39 | return (
|
40 |
| - <div className={clsx('col col--4')}> |
| 40 | + <div className={clsx("col col--4")}> |
41 | 41 | <div className="text--center">
|
42 | 42 | <Svg className={styles.featureSvg} role="img" />
|
43 | 43 | </div>
|
|
0 commit comments