Files
psychartherapie-v2/pages/404.js
Skydust e583858edb
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled
Cleaned up some code and added a somewhat responsive header burger
2023-09-19 15:13:22 +02:00

25 lines
734 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Hero } from "../components/blocks/hero";
import { Layout } from "../components/layout/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>
);
}