import { redirect } from "next/navigation";

const RemovedFeaturePage = () => {
  redirect("/");
};

export default RemovedFeaturePage;
