feat: update landing page with current screenshots

This commit is contained in:
Vasily Zubarev
2025-07-23 14:29:13 +02:00
parent 9305deda86
commit 070891515b
19 changed files with 145 additions and 61 deletions

View File

@@ -1,3 +1,4 @@
import { generateUUID } from "@/lib/utils"
import { useEffect, useState } from "react"
interface Progress {
@@ -38,7 +39,7 @@ export function useProgress(options: UseProgressOptions = {}) {
}
try {
const progressId = crypto.randomUUID()
const progressId = generateUUID()
const source = new EventSource(`/api/progress/${progressId}?type=${type}`)
setEventSource(source)