import React from 'react'; import { Typography, Box } from '@mui/material'; import LegalPage from './LegalPage.js'; const NotFound404 = () => { const content = ( <> 404 - Page Not Found Diese Seite scheint es nicht mehr zu geben. ); return ; }; export default NotFound404;