Initial commit

This commit is contained in:
2023-08-28 13:12:21 +02:00
commit 52134c91ef
78 changed files with 13869 additions and 0 deletions

24
pages/404.js Normal file
View File

@@ -0,0 +1,24 @@
import { Hero } from "../components/blocks/hero";
import { Layout } from "../components/layout";
export default function FourOhFour() {
return (
<Layout>
<Hero
data={{
color: "default",
headline: "404 Page Not Found",
text: "Oops! It seems there's nothing here, how embarrassing.",
actions: [
{
label: "Return Home",
type: "button",
icon: true,
link: "/",
},
],
}}
/>
</Layout>
);
}