First commit

This commit is contained in:
Lucien Astié 2024-08-08 22:21:01 +02:00
commit 48866cc6ab
20 changed files with 6301 additions and 0 deletions

9
app/random/page.tsx Normal file
View file

@ -0,0 +1,9 @@
import { redirect } from 'next/navigation'
export default function Home() {
let roomNumber = ""
for(let i = 0; i < 6; i++) {
roomNumber += Math.floor(Math.random() * 9.99)
}
redirect('/' + roomNumber.toString())
}