Skip to content

Commit 07f4081

Browse files
committed
Adds university json
Adds connection to pems
1 parent 501945e commit 07f4081

File tree

8 files changed

+29557
-496
lines changed

8 files changed

+29557
-496
lines changed

src/app/page.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import Jury from "../components/Jury/Jury";
1010
import {Features} from "../components/Features/Features";
1111
import LandingImage from "../components/LandingImage/LandingImage";
1212
import {Gallery} from "../components/Gallery/Gallery";
13+
import Registration from "../components/Registration/Registration";
1314

1415
export default function Page() {
1516
return (
@@ -21,13 +22,13 @@ export default function Page() {
2122
<Sponsors/>
2223
<Gallery/>
2324
<Newsletter/>
24-
{/*<Registration />
25-
<Location />*/}
25+
<Registration />
26+
{/* <Location />*/}
2627
<Speakers/>
2728
<Jury/>
2829
<TimeTable/>
2930
<Faq/>
3031
<Team/>
3132
</>
3233
)
33-
}
34+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import {Box, Button, Divider, Grid, TextField, Typography} from "@mui/material";
2+
3+
export function GroupManager(props) {
4+
return (
5+
<Grid
6+
item
7+
md={12}
8+
xs={12}
9+
>
10+
<TextField fullWidth label={"Enter group name here"}>
11+
12+
</TextField>
13+
14+
<Divider> or </Divider>
15+
16+
<Button variant={"outlined"} color={"secondary"}>Create new Group</Button>
17+
18+
<Typography variant="body2" color="textSecondary" gutterBottom>
19+
Enter your group code here or generate a new one.
20+
</Typography>
21+
</Grid>
22+
);
23+
}

0 commit comments

Comments
 (0)