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