website/src/pages/404.js

24 lines
652 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 React from "react"
import Layout from "../components/layout"
import Hero from "../components/hero"
import bgImage from "../media/phones.png"
import CompatBtn from "../components/compatbtn"
const NotFoundPage = () => {
return (
<Layout>
<Hero bg={bgImage}>
<h1 className="mb-5 text-5xl font-bold">Not found</h1>
<p className="mb-5 text-lg">Sorry 😔. We couldnt find what you were looking for.</p>
<CompatBtn autoFocus={true} className="btn-primary" href="/">Home</CompatBtn>
</Hero>
</Layout>
)
}
export default NotFoundPage
export const Head = () => <title>Not found</title>