LandingPage.js
847 Bytes
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
import React from "react";
import { makeStyles } from "@material-ui/core/styles";
const useStyles = makeStyles((theme) =>({
root: {
position:"fixed",
minHeight:"100vh",
minWidth:"100vw",
backgroundColor: "rgba(0,0,0,0.5)",
padding:0,
},
title:{
color:"white",
fontSize: 50,
textAlign:"center",
marginLeft : "auto",
marginRight : "auto",
marginTop:"15%",
width: "15rem"
},
content:{
color:"white",
textAlign:"center",
marginTop:"1rem",
marginLeft : "auto",
marginRight : "auto",
width: "20rem"
}
}));
export default function LandingPage() {
const classes = useStyles();
return (
<div className={classes.root}>
<p className={classes.title}>Do-gether</p>
<p className={classes.content}>Sharing your TODO-LIST with others!</p>
</div>
);
}