diff --git a/src/components/ConnectionPrompt.tsx b/src/components/ConnectionPrompt.tsx index a15a4a4..4a64423 100644 --- a/src/components/ConnectionPrompt.tsx +++ b/src/components/ConnectionPrompt.tsx @@ -3,6 +3,7 @@ import { useMachineStore } from "../stores/useMachineStore"; import { isBluetoothSupported } from "../utils/bluetoothSupport"; import { ExclamationTriangleIcon } from "@heroicons/react/24/solid"; import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; import { Alert, AlertDescription } from "@/components/ui/alert"; export function ConnectionPrompt() { @@ -14,36 +15,38 @@ export function ConnectionPrompt() { if (isBluetoothSupported()) { return ( -
-
-
- - - + + +
+
+ + + +
+
+

+ Get Started +

+

+ Connect to your embroidery machine +

+
-
-

- Get Started -

-

- Connect to your embroidery machine -

-
-
- -
+ + + ); }