diff --git a/app/routes/index.tsx b/app/routes/index.tsx new file mode 100644 index 0000000..1c69a2f --- /dev/null +++ b/app/routes/index.tsx @@ -0,0 +1,5 @@ +import { redirect } from "@remix-run/node"; + +export const loader = () => { + return redirect("/add-recipe"); +};