New documentation

This commit is contained in:
MM20
2022-10-09 22:20:15 +02:00
parent 5c51926062
commit fc21a45f2f
95 changed files with 23605 additions and 198 deletions
@@ -0,0 +1,34 @@
import React from 'react'
import styles from './styles.module.css'
import ThemedImage from '@theme/ThemedImage'
export default function HomepageScreenshots(): JSX.Element {
return (
<section>
<div className="container padding-vert--xl">
<div className="row">
<div className="col col--4">
<img src="img/screenshot-1.png"></img>
</div>
<div className="col col--4">
<img src="img/screenshot-2.png"></img>
</div>
<div className="col col--4">
<img src="img/screenshot-3.png"></img>
</div>
</div>
<div className="row">
<div className="col col--4">
<img src="img/screenshot-4.png"></img>
</div>
<div className="col col--4">
<img src="img/screenshot-5.png"></img>
</div>
<div className="col col--4">
<img src="img/screenshot-6.png"></img>
</div>
</div>
</div>
</section>
)
}