Files
universal_is/client/src/pages/NotFound.tsx

29 lines
775 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Text } from "@fluentui/react-components";
import { makeStyles } from "@fluentui/react-components";
import { IconError404 } from "@tabler/icons-react";
const useStyles = makeStyles({
root: {
display: 'flex',
flexDirection: 'column',
alignItems: 'center'
}
})
export default function NotFound() {
const classes = useStyles()
return (
<div style={{
width: '100%',
height: '100%',
}}>
<div className={classes.root}>
<IconError404 size={100} />
<Text size={500} weight='medium' align='center'>
Запрашиваемая страница не найдена.
</Text>
</div>
</div>
)
}