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. +

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