import { redirect } from "next/navigation";

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

export default Products;
