Skip to content

Commit

Permalink
Add docs email for feedback (#538)
Browse files Browse the repository at this point in the history
* swizzle note found component

* Add new docs email for feedback
  • Loading branch information
kathweinschenkprophecy authored Jan 24, 2025
1 parent 2dfd7b3 commit 37a5e38
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
],
},
Expand Down Expand Up @@ -141,6 +146,10 @@ const config = {
{
title: "More",
items: [
{
label: "Documentation feedback",
href: "mailto:[email protected]",
},
{
label: "Login",
href: "https://app.prophecy.io/",
Expand Down
25 changes: 25 additions & 0 deletions src/theme/NotFound.js
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>
</>
);
}

0 comments on commit 37a5e38

Please sign in to comment.