From 9f8248da4ff7145089a0e0d75faedfd69948fb9e Mon Sep 17 00:00:00 2001 From: "@casey_baggz_omni" Date: Thu, 3 Oct 2024 12:19:18 -0500 Subject: [PATCH] docs: add 404 page --- docs/app/components/icons/paw-icon.tsx | 12 ++++++ docs/app/not-found.tsx | 54 ++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 docs/app/components/icons/paw-icon.tsx create mode 100644 docs/app/not-found.tsx diff --git a/docs/app/components/icons/paw-icon.tsx b/docs/app/components/icons/paw-icon.tsx new file mode 100644 index 0000000..5da0548 --- /dev/null +++ b/docs/app/components/icons/paw-icon.tsx @@ -0,0 +1,12 @@ +import type { SVGProps } from 'react' + +export default function PawIcon(props: SVGProps) { + return ( + + + + ) +} diff --git a/docs/app/not-found.tsx b/docs/app/not-found.tsx new file mode 100644 index 0000000..289a4b1 --- /dev/null +++ b/docs/app/not-found.tsx @@ -0,0 +1,54 @@ +import { vstack } from '@cerberus-design/styled-system/patterns' +import { css } from '@cerberus/styled-system/css' +import Link from 'next/link' +import PawIcon from './components/icons/paw-icon' +import { button } from '@cerberus-design/styled-system/recipes' + +export default function NotFound() { + return ( +
+ + + + +

+ Away from post +

+

+ We couldn't find Cerberus...or the page you are trying to reach. +

+ + + Return from when you came + +
+ ) +}