adminFront/src/Components/Sections/index.tsx

156 lines
3.6 KiB
TypeScript
Raw Normal View History

import * as React from "react";
2022-09-08 17:21:17 +00:00
import { Box, Typography, Button } from "@mui/material";
import theme from "../../theme";
2022-09-08 17:21:17 +00:00
import Logo from "../Logo";
const Authorization: React.FC = () => {
return (
<React.Fragment>
2022-09-08 17:21:17 +00:00
<Logo />
<Box sx={{
2022-09-08 17:21:17 +00:00
width: "100%",
height: "100px",
display: "flex",
flexDirection: "column",
2022-09-08 17:21:17 +00:00
justifyContent: "space-between",
alignItems: "center"
}}>
2022-09-08 17:21:17 +00:00
<Box>
<Typography variant="h6">
Все пользователи
</Typography>
</Box>
2022-09-08 17:21:17 +00:00
<Button
variant = "contained"
sx={{
backgroundColor: theme.palette.primary.light,
width: "100%",
2022-09-08 17:21:17 +00:00
height: "62px",
"&:hover": {
backgroundColor: theme.palette.primary.dark
}
}}>
2022-09-08 17:21:17 +00:00
ВОЙТИ
</Button>
</Box>
2022-09-08 17:21:17 +00:00
<Box sx={{
width: "100%",
height: "100px",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "center"
}}>
<Box>
<Typography variant="h6">
Общая статистика
</Typography>
</Box>
2022-09-08 17:21:17 +00:00
<Button
variant = "contained"
sx={{
backgroundColor: theme.palette.primary.light,
width: "100%",
2022-09-08 17:21:17 +00:00
height: "62px",
"&:hover": {
backgroundColor: theme.palette.primary.dark
}
}}>
2022-09-08 17:21:17 +00:00
ВОЙТИ
</Button>
</Box>
2022-09-08 17:21:17 +00:00
<Box sx={{
width: "100%",
height: "100px",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "center"
}}>
<Box>
<Typography variant="h6">
Шаблонизатор документов
</Typography>
</Box>
2022-09-08 17:21:17 +00:00
<Button
variant = "contained"
sx={{
backgroundColor: theme.palette.primary.light,
width: "100%",
2022-09-08 17:21:17 +00:00
height: "62px",
"&:hover": {
backgroundColor: theme.palette.primary.dark
}
}}>
2022-09-08 17:21:17 +00:00
ВОЙТИ
</Button>
</Box>
2022-09-08 17:21:17 +00:00
<Box sx={{
width: "100%",
height: "100px",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "center"
}}>
<Box>
<Typography variant="h6">
Конструктор опросов
</Typography>
</Box>
2022-09-08 17:21:17 +00:00
<Button
variant = "contained"
sx={{
backgroundColor: theme.palette.primary.light,
width: "100%",
2022-09-08 17:21:17 +00:00
height: "62px",
"&:hover": {
backgroundColor: theme.palette.primary.dark
}
}}>
2022-09-08 17:21:17 +00:00
ВОЙТИ
</Button>
</Box>
2022-09-08 17:21:17 +00:00
<Box sx={{
width: "100%",
height: "100px",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "center"
}}>
<Box>
<Typography variant="h6">
Сокращатель ссылок
</Typography>
</Box>
2022-09-08 17:21:17 +00:00
<Button
variant = "contained"
sx={{
backgroundColor: theme.palette.primary.light,
width: "100%",
2022-09-08 17:21:17 +00:00
height: "62px",
"&:hover": {
backgroundColor: theme.palette.primary.dark
}
}}>
2022-09-08 17:21:17 +00:00
ВОЙТИ
</Button>
</Box>
</React.Fragment>
);
}
export default Authorization;