forked from jupyterhub/binderhub
-
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
ddf6371
commit 54f6e04
Showing
4 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,4 +52,8 @@ a { | |
font-size: 1rem; | ||
} | ||
|
||
.jumbotron { | ||
margin-bottom: 100px; | ||
} | ||
|
||
@import "bootstrap-icons/font/bootstrap-icons.css"; |
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 @@ | ||
export function NotFoundPage() { | ||
return ( | ||
<> | ||
<div className="container text-center jumbotron"> | ||
<h1> | ||
404: Not Found | ||
</h1> | ||
|
||
<p className="lead"> | ||
Note: Some errors disappear by refreshing the page. | ||
</p> | ||
</div> | ||
<div className="container"> | ||
<div className="row text-center"> | ||
<h3>questions?<br/>join the <a href="https://discourse.jupyter.org/c/binder">discussion</a>, read the <a href="https://mybinder.readthedocs.io/en/latest/">docs</a>, see the <a href="https://github.com/jupyterhub/binderhub">code</a></h3> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |