feat: add interactive dispute evidence upload and sealed review mechanism

This commit is contained in:
zetaloop
2026-02-20 22:47:33 +08:00
parent 86ece33c00
commit a5780c8393
4 changed files with 121 additions and 24 deletions
+5 -6
View File
@@ -30,12 +30,11 @@ export default function ReviewPage({ params }: { params: Promise<{ id: string }>
<div className="container mx-auto py-8 px-4 max-w-lg text-center space-y-4">
<Lock className="h-12 w-12 mx-auto text-muted-foreground" />
<h2 className="text-xl font-bold"></h2>
<p className="text-sm text-muted-foreground">
</p>
<Button asChild>
<Link href={`/order/${id}`}></Link>
</Button>
<p className="text-sm text-muted-foreground"></p>
<p className="text-sm text-muted-foreground"></p>
<Link href={`/order/${id}`} className="text-sm text-primary hover:underline">
</Link>
</div>
)
}