import { Link as RouterLink } from 'react-router-dom'; // @mui import { styled } from '@mui/material/styles'; import { Box, Button, Link, Container, Typography } from '@mui/material'; // layouts import LogoOnlyLayout from '../../layouts/LogoOnlyLayout'; // routes import { PATH_AUTH } from '../../routes/paths'; // components import Page from '../../components/Page'; import Iconify from '../../components/Iconify'; // sections import { VerifyCodeForm } from '../../sections/auth/verify-code'; // ---------------------------------------------------------------------- const RootStyle = styled('div')(({ theme }) => ({ display: 'flex', height: '100%', alignItems: 'center', padding: theme.spacing(12, 0), })); // ---------------------------------------------------------------------- export default function VerifyCode() { return ( Please check your email! We have emailed a 6-digit confirmation code to acb@domain, please enter the code in below box to verify your email. Don’t have a code?   {}}> Resend code ); }