import { Card, CardBody } from "@heroui/card"; import { Link } from "@tanstack/react-router"; export function NotFound({ children }: { children?: any }) { return (
{children ||

La página que buscas no existe.

}

Ir a inicio

); }