344b1701dd
Uniform stock management for healthcare linen rooms. Licensed under the GNU AGPL v3.
7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
// /product was live briefly before the design handoff split it into /features and /how-it-works.
|
|
export default function ProductRedirect() {
|
|
redirect("/features");
|
|
}
|