Created the Statistic.jsx page

This commit is contained in:
Mathias Wagner 2023-08-02 15:02:27 +02:00
parent 3b915851f0
commit e15d3f08ee
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,18 @@
import {Stack, Typography} from "@mui/material";
import Analytics from "@/common/assets/images/error/analytics.svg";
export const Statistic = () => {
return (
<Stack gap={2} mt={{xs: 2, lg: 20}} direction="row" alignItems="center" sx={{flexWrap: {xs: 'wrap', lg: 'nowrap'}}}
justifyContent="space-evenly">
<Stack direction="column" justifyContent="center" sx={{maxWidth: "35rem"}} gap={2}>
<Typography variant="h2" fontWeight={700}>Bald verfügbar</Typography>
<Typography variant="h4" fontWeight={500}>Statistiken sind in unserer Beta-Version noch nicht verfügbar.</Typography>
<Typography variant="h5" fontWeight={500}>
Wir arbeiten mit Hochdruck an der Fertigstellung dieser Funktion.
</Typography>
</Stack>
<img src={Analytics} alt="Analytics" height={350}/>
</Stack>
)
}