fix empty signup page

This commit is contained in:
keyan 2023-07-11 10:21:46 -05:00
parent 93afd4ea9a
commit 0ff4da1a4f
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import Link from 'next/link' import Link from 'next/link'
import LayoutStatic from '../components/layout-static' import LayoutStatic from '../components/layout-static'
import Login from '../components/login' import Login from '../components/login'
export { getServerSideProps } from '../components/login' export { getServerSideProps } from './login'
function SignUpHeader () { function SignUpHeader () {
return ( return (
@ -9,7 +9,7 @@ function SignUpHeader () {
<h3 className='w-100 pb-2'> <h3 className='w-100 pb-2'>
Sign up Sign up
</h3> </h3>
<div className='font-weight-bold text-muted pb-4'>Join 10,000+ bitcoiners and start stacking sats today</div> <div className='font-weight-bold text-muted pb-4'>Join 15,000+ bitcoiners and start stacking sats today</div>
</> </>
) )
} }