First commit

This commit is contained in:
charles-gauthereau
2024-11-03 15:29:30 +01:00
parent ba9dddf0aa
commit d6ff290f66
68 changed files with 696 additions and 228 deletions
+14
View File
@@ -0,0 +1,14 @@
import Home from "./home/page";
import {redirect} from "next/navigation";
export default async function Index() {
const user = true
if (user) {
redirect("/dashboard")
}
return (
<Home/>
);
}