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

The page you are looking for does not exist.

}

Start Over

); }