added login page
This commit is contained in:
parent
e3b3256bd8
commit
d83e6fafd6
@ -1,7 +1,6 @@
|
||||
import PeopleIcon from '@mui/icons-material/People';
|
||||
import AddIcon from '@mui/icons-material/Add';
|
||||
import PhoneEnabledIcon from '@mui/icons-material/PhoneEnabled';
|
||||
// import phoneCall from "./images/phone-call.png";
|
||||
import CircleIcon from '@mui/icons-material/Circle';
|
||||
import Button from "@mui/material/Button";
|
||||
import Grid from "@mui/material/Grid";
|
||||
@ -9,7 +8,7 @@ import Grid from "@mui/material/Grid";
|
||||
const ShortCuts: React.FC = () => {
|
||||
return (
|
||||
<div className="short-cuts" >
|
||||
<Grid className="row-1" container spacing={2}>
|
||||
<Grid className="row-1" container spacing={1}>
|
||||
<Grid item sm={6}>
|
||||
<Button className="tile">
|
||||
<PeopleIcon className="icon" />
|
||||
@ -23,7 +22,7 @@ const ShortCuts: React.FC = () => {
|
||||
<label>Join</label>
|
||||
</Grid>
|
||||
</Grid>
|
||||
<Grid className="row-2" container spacing={2}>
|
||||
<Grid className="row-2" container spacing={1}>
|
||||
<Grid item sm={6}>
|
||||
<Button className="tile">
|
||||
<PhoneEnabledIcon className="icon" />
|
||||
|
||||
11
src/components/login/Login.tsx
Normal file
11
src/components/login/Login.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import Container from "@mui/material/Container";
|
||||
|
||||
const Login: React.FC = () => {
|
||||
return (
|
||||
<Container className="login">
|
||||
Login
|
||||
</Container>
|
||||
);
|
||||
};
|
||||
|
||||
export default Login;
|
||||
@ -10,7 +10,8 @@
|
||||
"layouts/_header.sass",
|
||||
"layouts/_footer.sass",
|
||||
"modules/_modules-dir.sass",
|
||||
"modules/_mainHome.sass"
|
||||
"modules/_mainHome.sass",
|
||||
"modules/_login.sass"
|
||||
],
|
||||
"names": [],
|
||||
"file": "App.css"
|
||||
|
||||
1
src/style/modules/_login.sass
Normal file
1
src/style/modules/_login.sass
Normal file
@ -0,0 +1 @@
|
||||
.login
|
||||
@ -1 +1,2 @@
|
||||
@import "mainHome"
|
||||
@import "login"
|
||||
Reference in New Issue
Block a user