diff --git a/src/components/checkout/SuccessScreen.tsx b/src/components/checkout/SuccessScreen.tsx new file mode 100644 index 0000000..5c83e3c --- /dev/null +++ b/src/components/checkout/SuccessScreen.tsx @@ -0,0 +1,27 @@ +import { Button } from '@/components/ui/button' + +interface Props { + onRestart: () => void +} + +export function SuccessScreen({ onRestart }: Props) { + return ( +
+
+ ✓ +
+ +

Reserva confirmada!

+ +

+ O pagamento caiu e sua reserva já está registrada. +
+ Nossa atendente foi avisada e vai confirmar os próximos passos pelo WhatsApp. +

+ + +
+ ) +}