import Heading from "@/components/ui/heading"; import { useEffect } from "react"; function NoMatch() { useEffect(() => { document.title = "Not Found - Frigate"; }, []); return ( <> 404

Page not found

); } export default NoMatch;