'use client' import Link from 'next/link' import { useEffect } from 'react' export default function NotFound() { useEffect(() => { // Clear any cached authentication data that might be causing issues if (typeof window !== 'undefined') { const keys = Object.keys(localStorage).filter(key => key.includes('juntete_') || key.includes('tritri_') ) keys.forEach(key => localStorage.removeItem(key)) } }, []) return (
The page you're looking for doesn't exist or has been moved.
Having trouble? Try clearing your browser cache and restarting the application.