forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRobotics.tsx
More file actions
40 lines (39 loc) · 1.19 KB
/
Robotics.tsx
File metadata and controls
40 lines (39 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
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 + " "+ styles.project_light_yellow}>
<div className="row-max-width">
<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
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>
</div>
);
}