"use client"; import Link from "next/link"; import { useLocale } from "next-intl"; import { motion } from "framer-motion"; export default function NotFound() { const locale = useLocale(); const isEs = locale === "es"; return (

404

{isEs ? "Página no encontrada" : "Page Not Found"}

{isEs ? "La página que buscas no existe o ha sido movida." : "The page you are looking for does not exist or has been moved."}

{isEs ? "Volver al inicio" : "Go back home"}
); }