import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import {signIn} from 'next-auth/react'; import {useTranslation} from 'next-i18next'; import theme from '../../theme'; const LoginGoogle = () => { const {t} = useTranslation(); return ( ); }; export default LoginGoogle;