Skip to content

Commit 93f2758

Browse files
committed
Add home page components
1 parent 664ad4f commit 93f2758

Some content is hidden

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

41 files changed

+546
-71
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
export default function Robotics (): React.ReactElement {
4+
return (
5+
<div>
6+
Ballooning page
7+
</div>
8+
)
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
export default function Robotics (): React.ReactElement {
4+
return (
5+
<div>
6+
Events page
7+
</div>
8+
)
9+
}

templerobotics.github.io/app/globals.css

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
@tailwind components;
33
@tailwind utilities;
44

5+
@font-face {
6+
font-family: 'Futura';
7+
src: url('../assets/fonts/futura-medium-webfont.woff') format('woff'),
8+
url('../assets/fonts/futura-medium-webfont.woff2') format('woff2');
9+
font-weight: normal;
10+
font-style: normal;
11+
}
12+
13+
@font-face {
14+
font-family: 'Arca';
15+
src: url('../assets/fonts/arcamajora3-heavy-webfont.otf') format('otf'),
16+
url('../assets/fonts/arcamajora3-heavy-webfont.eot') format('eot'),
17+
url('../assets/fonts/arcamajora3-heavy-webfont.woff2') format('woff2'),
18+
url('../assets/fonts/arcamajora3-heavy-webfont.woff') format('woff');
19+
font-weight: normal;
20+
font-style: normal;
21+
}
22+
523
:root {
624
--background: #ffffff;
725
--foreground: #171717;
@@ -22,20 +40,30 @@
2240
body {
2341
color: var(--foreground);
2442
background: var(--background);
25-
font-family: Arial, Helvetica, sans-serif;
43+
44+
& * {
45+
font-family: 'Futura', 'Helvetica', 'Arial', 'sans-serif';
46+
}
47+
}
48+
49+
.header-text {
50+
font-family: 'Arca', 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
51+
font-weight: 200;
2652
}
2753

2854
.flex-vertical {
2955
display: flex;
3056
flex-direction: column;
3157
align-items: center;
58+
justify-content: center;
3259
gap: 1rem;
3360
}
3461

3562
.flex-horizontal {
3663
display: flex;
3764
flex-direction: row;
3865
align-items: center;
66+
justify-content: center;
3967
gap: 1rem;
4068
}
4169

templerobotics.github.io/app/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default function RootLayout({
2626
<body className={`${roboto.variable} antialiased`} >
2727
<ThemeProvider theme={theme}>
2828
<NavBar/>
29+
<div style={{height: '3rem'}}/>
2930
{children}
3031
</ThemeProvider>
3132
</body>
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
// Third party imports
2-
import Title from '@components/home/Title'
1+
import HomePage from '@components/home/HomePage'
32
import React from 'react'
43

54
export default function Home (): React.ReactElement {
6-
return (
7-
<>
8-
<Title/>
9-
</>
10-
)
5+
return (<HomePage/>)
116
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
export default function Robotics (): React.ReactElement {
4+
return (
5+
<div>
6+
Rocksat page
7+
</div>
8+
)
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from 'react'
2+
3+
export default function Robotics (): React.ReactElement {
4+
return (
5+
<div>
6+
Sponsors page
7+
</div>
8+
)
9+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)