-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
635f0fe
commit 52f7a9a
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import Logo from '../assets/image/sel-q-logo.png'; | ||
import { Image } from 'react-bootstrap'; | ||
import { Link } from 'react-router-dom'; | ||
import Header from '../components/common/Header'; | ||
import { MAIN } from '../styles/variables'; | ||
|
||
export default function NotFoundPage() { | ||
return ( | ||
<> | ||
<Header /> | ||
<div | ||
style={{ | ||
width: '100%', | ||
padding: '10px', | ||
minHeight: 'calc(100vh - 150px)', | ||
maxWidth: '1080px', | ||
margin: '0 auto', | ||
}} | ||
> | ||
<div | ||
style={{ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
marginTop: '150px', | ||
}} | ||
> | ||
<Image | ||
src={Logo} | ||
alt={'selQ-Logo'} | ||
style={{ width: '100px', height: '100px' }} | ||
/> | ||
<h2 className='mt-3'>해당 페이지를 찾지 못했습니다.</h2> | ||
<div> | ||
<Link | ||
style={{ | ||
textDecoration: 'none', | ||
fontSize: '1.5rem', | ||
color: MAIN.MEDIUM, | ||
}} | ||
to='/' | ||
> | ||
홈으로 이동하기 | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters