import React from "react"; import Container from "@mui/material/Container"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import { useTranslation } from 'react-i18next'; const PresseverleihPage = () => { const { t } = useTranslation(); return ( {t('pages.oilPress.title')} {t('pages.oilPress.comingSoon')} ); }; export default PresseverleihPage;