diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..9d6963c --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,21 @@ +--- +import { css } from '@styled-system/css' +import Basic from '@/components/layout/Basic.astro' + +const headingClass = css({ + fontSize: '50px', + textAlign: 'center' +}) +const notFoundDescription = css({ + fontSize: 'lg', + textAlign: 'center' +}) +--- + + +

404 Not Found

+

+ The page you are looking for does not exist or has been moved. Try going + back to the home page. +

+