import { NextPage } from 'next' import { useTheme } from 'next-themes' import Image from 'next/legacy/image' import Link from 'next/link' import { useEffect, useState } from 'react' import { Button } from 'ui' import { BASE_PATH } from '@/lib/constants' const Error404: NextPage = ({}) => { const { resolvedTheme } = useTheme() const [show404, setShow404] = useState(false) useEffect(() => { setTimeout(() => { setShow404(true) }, 500) }, []) return (

404

Looking for something? 🔍

We couldn't find the page that you're looking for!

) } export default Error404