'use client'; import React from 'react'; import { useRouter } from 'next/navigation'; import Icon from '@/components/ui/AppIcon'; export default function NotFound() { const router = useRouter(); const handleGoHome = () => { router?.push('/'); }; const handleGoBack = () => { if (typeof window !== 'undefined') { window.history?.back(); } }; return (

404

Page Not Found

The page you're looking for doesn't exist. Let's get you back!

); }