import { useEffect } from "react"; export default function RedirectStart() { useEffect(() => { window.location.replace("/"); }, []); return null; }