diff --git a/src/admin/pages/NotFound.tsx b/src/admin/pages/NotFound.tsx index 855d83f..ea7d7de 100644 --- a/src/admin/pages/NotFound.tsx +++ b/src/admin/pages/NotFound.tsx @@ -1,53 +1,28 @@ -import { Link } from "react-router-dom"; -import { motion } from "framer-motion"; +import { Link as RouterLink } from "react-router-dom"; +import Box from "@mui/material/Box"; +import Typography from "@mui/material/Typography"; +import { Button } from "../ui"; export default function NotFound() { return ( - -
- - - - - - -
-

+ 404 -

-

Stránka nebyla nalezena.

- + + Stránka nebyla nalezena. + + ); }