2023-07-24 13:35:05 -05:00
|
|
|
import Image from 'react-bootstrap/Image'
|
2023-07-23 10:08:43 -05:00
|
|
|
import { StaticLayout } from '../components/layout'
|
2023-01-10 17:13:37 -06:00
|
|
|
|
|
|
|
export default function Email () {
|
|
|
|
return (
|
2023-07-23 10:08:43 -05:00
|
|
|
<StaticLayout>
|
2023-01-10 17:13:37 -06:00
|
|
|
<div className='p-4 text-center'>
|
2023-07-29 14:38:20 -05:00
|
|
|
<Image className='rounded-1 shadow-sm' width='320' height='223' src={`${process.env.NEXT_PUBLIC_ASSET_PREFIX}/hello.gif`} fluid />
|
|
|
|
<h2 className='pt-4'>Check your email</h2>
|
|
|
|
<h4 className='text-muted pt-2'>A sign in link has been sent to your email address</h4>
|
2023-01-10 17:13:37 -06:00
|
|
|
</div>
|
2023-07-23 10:08:43 -05:00
|
|
|
</StaticLayout>
|
2023-01-10 17:13:37 -06:00
|
|
|
)
|
|
|
|
}
|