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
+11
View File
@@ -0,0 +1,11 @@
import {PageParams} from "@/types/next";
export default async function RoutePage(props: PageParams<{}>) {
return(
<div>
<h1>Home</h1>
</div>
)
}