diff --git a/apps/website2/src/pages/_404.css b/apps/website2/src/pages/_404.css new file mode 100644 index 000000000..8c9bdef59 --- /dev/null +++ b/apps/website2/src/pages/_404.css @@ -0,0 +1,9 @@ +section.section-404 { + text-align: center; + background: var(--background-color); +} + +section.section-404 h2 { + color: var(--brand-3); + margin: 1em; +} \ No newline at end of file diff --git a/apps/website2/src/pages/_404.tsx b/apps/website2/src/pages/_404.tsx index d67383a02..7cd7e4e5c 100644 --- a/apps/website2/src/pages/_404.tsx +++ b/apps/website2/src/pages/_404.tsx @@ -1,9 +1,10 @@ import Section from "../components/Section"; +import "./_404.css"; export function NotFound() { return ( -
-

It's gone :(

+
+ The page you were looking for could not be found. Maybe it was deleted or the URL is incorrect.
); }