VideoChain-UI / src /app /page.tsx
jbilcke-hf's picture
jbilcke-hf HF staff
ready for release (sort of)
43dd1ac
raw
history blame
169 Bytes
import { redirect } from 'next/navigation'
import { v4 as uuidv4 } from "uuid"
export default function Index() {
const uuid = uuidv4()
redirect(`/studio/${uuid}`)
}