Skip to content

Commit 1b91ee6

Browse files
committed
started robotics page
1 parent ef3b2dd commit 1b91ee6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+4823
-519
lines changed

templerobotics.github.io/app/globals.css

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
:root {
3434
--background: #0a0a0a;
3535
--foreground: #ededed;
36-
--foreground-hover: #cccccc;
36+
--foreground-hover: #b7b7b7;
3737
--primary: #9D2235;
3838
}
3939
}
@@ -52,6 +52,7 @@ body {
5252
font-weight: 200;
5353
}
5454

55+
.flex-vertical-space-around,
5556
.flex-vertical {
5657
display: flex;
5758
flex-direction: column;
@@ -60,6 +61,8 @@ body {
6061
gap: 1rem;
6162
}
6263

64+
.flex-horizontal-end,
65+
.flex-horizontal-start,
6366
.flex-horizontal {
6467
display: flex;
6568
flex-direction: row;
@@ -68,6 +71,27 @@ body {
6871
gap: 1rem;
6972
}
7073

74+
.flex-horizontal-end {
75+
justify-content: end;
76+
}
77+
78+
.flex-horizontal-start {
79+
justify-content: start;
80+
}
81+
82+
.flex-vertical-space-around {
83+
justify-content: space-around;
84+
gap: 0;
85+
}
86+
7187
.flex-horizontal > * {
7288
align-content: center;
7389
}
90+
91+
.sub-section-header-text {
92+
font-family: 'Arca', 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
93+
font-weight: 200;
94+
font-size: 34px;
95+
letter-spacing: 1px;
96+
line-height: 1;
97+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import HomePage from '@components/home/HomePage'
1+
import Page from '@components/home/HomePage'
22
import React from 'react'
33

44
export default function Home (): React.ReactElement {
5-
return (<HomePage/>)
5+
return (<Page/>)
66
}
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
import RoboticsPage from '@components/robotics/RoboticsPage'
12
import React from 'react'
23

34
export default function Robotics (): React.ReactElement {
4-
return (
5-
<div>
6-
Robotics page
7-
</div>
8-
)
5+
return (<RoboticsPage/>)
96
}
1.05 MB
3.13 MB
2.01 MB
3.24 MB
3.66 MB
535 KB
638 KB

0 commit comments

Comments
 (0)