From f2d1b864e80b7c569d8b25a11a6f9e97d739906e Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Wed, 11 Mar 2026 08:42:59 -0500 Subject: [PATCH] Add src/components/onboarding/ActivationSuccessModal.jsx --- .../onboarding/ActivationSuccessModal.jsx | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/onboarding/ActivationSuccessModal.jsx diff --git a/src/components/onboarding/ActivationSuccessModal.jsx b/src/components/onboarding/ActivationSuccessModal.jsx new file mode 100644 index 0000000..8bd039b --- /dev/null +++ b/src/components/onboarding/ActivationSuccessModal.jsx @@ -0,0 +1,51 @@ +import React from "react"; +import { motion, AnimatePresence } from "framer-motion"; +import { CheckCircle2 } from "lucide-react"; +import { Button } from "@/components/ui/button"; + +export default function ActivationSuccessModal({ open, storeName, storeAddress, onConfirm }) { + return ( + + {open && ( +
+ + {/* Success header */} +
+
+ PackageHub Business Centers +
+
+ +
+

Account Setup Complete

+
+ + {/* Body */} +
+

+ You have successfully set up the PackageHub360 account for{" "} + {storeName}{" "} + at{" "} + {storeAddress}. +

+

+ You'll now be taken to your dashboard to complete the setup process. +

+
+ + {/* Action */} +
+