import React, { ReactElement } from 'react' import Page from '@shared/Page' import fishfail from '@images/fishfail.gif' import Head from 'next/head' import Button from '@shared/atoms/Button' import content from '../../content/pages/404.json' import { useRouter } from 'next/router' export default function Page404(): ReactElement { const router = useRouter() const { title, description, actions } = content return ( <> {actions.map((action: { title: string; url: string }) => ( ))} ) }