forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRoboticsReverse.tsx
More file actions
28 lines (27 loc) · 1.01 KB
/
RoboticsReverse.tsx
File metadata and controls
28 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import styles from "./styles.module.css";
import RoboticsMD from "@site/src/components/home/ProjectsOverview/descriptions/Robotics.md";
import RoboticsPictureUrl from "@site/static/img/projects/robotics.png";
export default function RoboticsProjects() {
return (
<div className={styles.container_projects}>
<div className={styles.row_projects}>
<div
className={
"col col--6 flex-full-centered" +
" " +
styles.col_project_overview_with_padding
}
>
<img src={RoboticsPictureUrl} width={"640px"} alt={"Picture showing two jupyterlab user interfaces displaying robotics projects."}/>
</div>
<div className={"col col--6" + " " + styles.col_project_overview_with_padding}>
<h1 className="padding-none">Robotics </h1>
<h2 className={styles.h2_custom}>
We just kicked off a new initiative to Robotics education.
</h2>
<RoboticsMD />
</div>
</div>
</div>
);
}