import { permanentRedirect } from "next/navigation"; const Home: React.FC = async () => { permanentRedirect("/home"); }; export default Home;