Socialify

Folder ..

Viewing 404.tsx
13 lines (11 loc) • 256.0 B

 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