diff --git a/src/components/DropZone.tsx b/src/components/DropZone.tsx index 6fc707d..ec200f3 100644 --- a/src/components/DropZone.tsx +++ b/src/components/DropZone.tsx @@ -22,8 +22,7 @@ const FORMAT_PILLS = [ { label: "MP3", color: "bg-blue/10 text-blue" }, { label: "SVG", color: "bg-teal/10 text-teal" }, { label: "CSV", color: "bg-mint/10 text-mint" }, - { label: "DOCX", color: "bg-orange/10 text-orange" }, - { label: "+60", color: "bg-[#f0ede8] text-text-light" }, + { label: "+64", color: "bg-[#f0ede8] text-text-light" }, ]; export function DropZone({ @@ -36,81 +35,51 @@ export function DropZone({ }: DropZoneProps) { return (
- {/* Animated ambient blobs */} - - - +
- {/* Glass card */} - - {/* Floating icon */} + {/* Icon */} - + -

+

{isDragging ? "Release to add" : "Drop files here"}

-

+

{isDragging ? "Your files are ready for transformation" - : "Images, documents, audio, video, data"} + : "Images, documents, audio, video, data — all formats welcome"}

{/* Format pills */} {!isDragging && ( -
+ {FORMAT_PILLS.map(({ label, color }, i) => ( {label} ))} -
+
)} {/* Browse button */} - + Browse files @@ -183,14 +147,15 @@ export function DropZone({ {/* Trust signal */} 70+ formats — 100% client-side - + +
); }