import type { FC } from 'react'

const IndexPage: FC = () => {
  return <div>This page should never be reached</div>
}

export default IndexPage
