-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
64 additions
and
125 deletions.
There are no files selected for viewing
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
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,29 @@ | ||
'use client'; | ||
|
||
import Button from '@/v1/base/Button'; | ||
import Image from 'next/image'; | ||
import { useRouter } from 'next/navigation'; | ||
|
||
export const ErrorPage = () => { | ||
const router = useRouter(); | ||
|
||
return ( | ||
<div className="absolute left-0 top-0 flex h-full w-full flex-col items-center justify-center gap-[2rem]"> | ||
<Image src="/images/loading.gif" width={230} height={160} alt="loading" /> | ||
<div className="font-heading"> | ||
<span className="font-bold text-main-900">다독이</span>도 몰라요~ 왜 | ||
이래요~ | ||
</div> | ||
<Button | ||
size="large" | ||
colorScheme="main" | ||
fill={false} | ||
onClick={() => router.replace('/')} | ||
> | ||
처음으로 돌아가기 | ||
</Button> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ErrorPage; |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.