25 lines
526 B
JavaScript
25 lines
526 B
JavaScript
import { useState } from 'react'
|
|
import '../css/global.css'
|
|
import BlackButton from './components/customButton'
|
|
|
|
function HomePage() {
|
|
|
|
|
|
return(
|
|
<div style={{
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
height: '100vh',
|
|
flexDirection: 'column',
|
|
}}>
|
|
<label className='title'>Fifty Shades <br /> of Bully</label>
|
|
|
|
<div style={{ height: '8vh' }}/>
|
|
|
|
<BlackButton text="Start" to='/warn'/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default HomePage
|