'use client';
import { Link } from '@/i18n/routing';
import Image from "next/image";
export default function NotFound() {
return (
Page not found
The page you are looking for might have been removed had its name
changed or is temporarily unavailable.
Go to homepage
);
}