feat: add UploadZone component and database utility for file processing
All checks were successful
On Push to Main / test (push) Successful in 31s
On Push to Main / publish (push) Successful in 59s
On Push to Main / deploy-dev (push) Successful in 1m35s

This commit is contained in:
RaymondVerhoef
2026-05-19 12:00:14 +02:00
parent d23b0b6b16
commit 8529def748
2 changed files with 21 additions and 13 deletions

View File

@@ -70,7 +70,7 @@ const UploadZone = ({ onUploadComplete }) => {
<p className="font-medium text-lg">Drag files here</p>
<p className="text-sm text-fg-muted mb-4">Supports .txt and .md (max 5MB)</p>
<Button variant="outline" type="button" disabled={isProcessing}>
{isProcessing && !syncProgress ? 'AI extraction in progress...' : 'Browse files'}
{isProcessing ? 'AI extraction in progress...' : 'Browse files'}
</Button>
<input
type="file"