aboutsummaryrefslogtreecommitdiff
path: root/pages/404.tsx
blob: f1ccaab46ae589a5652ed6d231b6f4338c2cf5a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Error from '../src/components/error/error'

const HomePage = () => {
  return (
    <Error
      code="404"
      title="Page not found."
      description="Sorry, we couldn't find the page you're looking for."
    />
  )
}

export default HomePage