-
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.
* swizzle note found component * Add new docs email for feedback
- Loading branch information
1 parent
2dfd7b3
commit 37a5e38
Showing
2 changed files
with
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,11 @@ const config = { | |
label: "Help", | ||
position: "right", | ||
}, | ||
{ | ||
to: "mailto:[email protected]", | ||
label: "Feedback", | ||
position: "right", | ||
}, | ||
{ to: "http://app.prophecy.io/", label: "Login", position: "right" }, | ||
], | ||
}, | ||
|
@@ -141,6 +146,10 @@ const config = { | |
{ | ||
title: "More", | ||
items: [ | ||
{ | ||
label: "Documentation feedback", | ||
href: "mailto:[email protected]", | ||
}, | ||
{ | ||
label: "Login", | ||
href: "https://app.prophecy.io/", | ||
|
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,25 @@ | ||
import React from "react"; | ||
import { PageMetadata } from "@docusaurus/theme-common"; | ||
import Layout from "@theme/Layout"; | ||
export default function NotFound() { | ||
return ( | ||
<> | ||
<PageMetadata title="Page Not Found" /> | ||
<Layout> | ||
<main className="container margin-vert--xl"> | ||
<div className="row"> | ||
<div className="col col--6 col--offset-3"> | ||
<h1 className="hero__title">Page Not Found</h1> | ||
<p>We could not find what you were looking for.</p> | ||
<p> | ||
Please contact Prophecy at{" "} | ||
<a href="mailto:[email protected]">[email protected]</a> to let us | ||
know our link is broken. | ||
</p> | ||
</div> | ||
</div> | ||
</main> | ||
</Layout> | ||
</> | ||
); | ||
} |