-
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.
style and feat: fix responsive, ghost animation and implementing erro…
…r pages
- Loading branch information
1 parent
ac37149
commit e972da7
Showing
11 changed files
with
647 additions
and
154 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
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,58 @@ | ||
import React from "react"; | ||
|
||
//React router dom | ||
import { Link } from "react-router-dom"; | ||
|
||
//Style | ||
import * as S from "./style"; | ||
|
||
//Components | ||
import Forest from "../../components/forest"; | ||
|
||
export default function index() { | ||
return ( | ||
<> | ||
<S.Main> | ||
<S.Box> | ||
<div class="box_ghost"> | ||
<div class="symbol"></div> | ||
<div class="symbol"></div> | ||
<div class="symbol"></div> | ||
<div class="symbol"></div> | ||
<div class="symbol"></div> | ||
<div class="symbol"></div> | ||
|
||
<div class="box_ghost-container"> | ||
<div class="box_ghost-eyes"> | ||
<div class="box_eye left"></div> | ||
<div class="box_eye right"></div> | ||
</div> | ||
<div class="box_ghost-mouth"></div> | ||
<div class="box_ghost-bottom"> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
</div> | ||
<div class="box_ghost-shadow"></div> | ||
</div> | ||
|
||
<div class="box_description"> | ||
<div class="box_description-container"> | ||
<div class="box_description-title">Whoops!</div> | ||
<div class="box_description-text"> | ||
It seems like we couldn't find the page you were looking for | ||
</div> | ||
</div> | ||
<Link to="/" class="box_button"> | ||
Go back | ||
</Link> | ||
</div> | ||
</S.Box> | ||
<Forest /> | ||
</S.Main> | ||
</> | ||
); | ||
} |
Oops, something went wrong.