2023-07-24 18:35:05 +00:00
|
|
|
import Image from 'react-bootstrap/Image'
|
2023-07-23 15:08:43 +00:00
|
|
|
import { StaticLayout } from '../components/layout'
|
2023-01-10 23:13:37 +00:00
|
|
|
|
|
|
|
export default function Email () {
|
|
|
|
return (
|
2023-07-23 15:08:43 +00:00
|
|
|
<StaticLayout>
|
2023-01-10 23:13:37 +00:00
|
|
|
<div className='p-4 text-center'>
|
|
|
|
<h1>Check your email</h1>
|
|
|
|
<h4 className='pb-4'>A sign in link has been sent to your email address</h4>
|
2023-07-23 15:08:43 +00:00
|
|
|
<Image width='500' height='376' src={`${process.env.NEXT_PUBLIC_ASSET_PREFIX}/hello.gif`} fluid />
|
2023-01-10 23:13:37 +00:00
|
|
|
</div>
|
2023-07-23 15:08:43 +00:00
|
|
|
</StaticLayout>
|
2023-01-10 23:13:37 +00:00
|
|
|
)
|
|
|
|
}
|