-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
6 changed files
with
42 additions
and
16 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.root { | ||
margin: 20rem auto; | ||
width: 500px; | ||
} | ||
|
||
.h1 { | ||
font-size: 5.6rem; | ||
margin: 2rem auto 5rem; | ||
text-align: center; | ||
} | ||
|
||
.p { | ||
font-size: 5.6rem; | ||
margin: 5rem auto 2rem; | ||
text-align: center; | ||
} |
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,20 @@ | ||
// /pages/404.js | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
import styles from "./404.module.css"; | ||
import Button from "@/components/Buttons/Button/Button"; | ||
|
||
export default function NotFoundPage() { | ||
return ( | ||
<div className={styles.root}> | ||
<p className={styles.p}>길을 잃었다</p> | ||
<Image src="/images/404.webp" width="500" height="300" alt="" /> | ||
<h1 className={styles.h1}>어딜 가야 할까</h1> | ||
<ul> | ||
<Button buttonType="login" color="white"> | ||
<Link href="/mydashboard">Go home</Link> | ||
</Button> | ||
</ul> | ||
</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
Binary file not shown.