Files
datacontroller.io/src/pages/404.tsx
Mihajlo Medjedovic fd510b88c4 init
2024-06-05 15:53:46 +02:00

24 lines
608 B
TypeScript

import React from 'react'
// import { Link } from 'gatsby'
import Layout from '../components/layout'
import Seo from '../components/seo'
import { Section } from '../components/shared'
import { SideBar } from '../templates/sidebar'
const NotFound = ({ data, location, pageContext }) => (
<Layout location={location} heroSection={false}>
<Seo title="Page Not Found" />
<Section color="black" bgColor="white" bottomArrow={false}>
<SideBar
pageContext={pageContext}
location={location}
notFoundPage={true}
/>
</Section>
</Layout>
)
export default NotFound