import { Card, CardContent, CardMedia, Container, Typography, } from '@mui/material'; import {useTranslation} from 'next-i18next'; import Layout from '../layouts/Centered'; import Logo from '../components/Logo'; import pageUtils from '../lib/pageUtils'; const PaymentConfirmation = () => { const {t} = useTranslation(); return ( {t`paymentConfirmation.title`} {t`paymentConfirmation.description`} ); }; export default PaymentConfirmation; export const getServerSideProps = pageUtils.getServerSideProps();