From 02e1b527b890d5d67bd656c854a0bca58b7f0f80 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Fri, 17 Apr 2026 10:07:30 +0000 Subject: [PATCH] keep it minimal --- .../portfolio/BulkUploadComingSoonModal.tsx | 87 +++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/app/components/portfolio/BulkUploadComingSoonModal.tsx diff --git a/src/app/components/portfolio/BulkUploadComingSoonModal.tsx b/src/app/components/portfolio/BulkUploadComingSoonModal.tsx new file mode 100644 index 0000000..2de2b42 --- /dev/null +++ b/src/app/components/portfolio/BulkUploadComingSoonModal.tsx @@ -0,0 +1,87 @@ +"use client"; + +import { + Dialog, + DialogBackdrop, + DialogPanel, + Transition, + TransitionChild, +} from "@headlessui/react"; +import { Fragment } from "react"; +import { XMarkIcon, RectangleStackIcon } from "@heroicons/react/24/outline"; + +interface BulkUploadComingSoonModalProps { + isOpen: boolean; + onClose: () => void; + portfolioId: string; +} + +export default function BulkUploadComingSoonModal({ + isOpen, + onClose, +}: BulkUploadComingSoonModalProps) { + return ( + + + + + + +
+ + + + +
+
+ +
+ +
+ + Coming Soon + +

+ Bulk Address Upload +

+

+ Upload multiple addresses in one go. This feature is currently in development + and will be available soon. +

+
+ + +
+
+
+
+
+
+ ); +}