From 4eaa962766f03c2cba0e40281f68cf492e7e7995 Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Wed, 11 Mar 2026 08:44:16 -0500 Subject: [PATCH] Add src/components/onboarding/WarningModal.jsx --- src/components/onboarding/WarningModal.jsx | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/onboarding/WarningModal.jsx diff --git a/src/components/onboarding/WarningModal.jsx b/src/components/onboarding/WarningModal.jsx new file mode 100644 index 0000000..7344651 --- /dev/null +++ b/src/components/onboarding/WarningModal.jsx @@ -0,0 +1,51 @@ +import React from "react"; +import { motion, AnimatePresence } from "framer-motion"; +import { AlertTriangle } from "lucide-react"; +import { Button } from "@/components/ui/button"; + +export default function WarningModal({ open, onContinue }) { + return ( + + {open && + + + + + {/* Header */} +
+
+
+ +
+
+

Important Before You Continue

+

Please read carefully before proceeding

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

+ Welcome to the PackageHub360 onboarding process. Before creating your account, please be aware of the following: +

+
+

+ • Account Association: Your account will be permanently linked to the store information provided in your onboarding invitation. +

+

+ • Stripe Setup Required: You will need to complete Stripe Express onboarding to receive electronic program payouts. +

+

+ • Data Accuracy: Please ensure all information entered during signup is accurate and matches your business records. +

+ \ No newline at end of file