From 7831984798ef4bb24075e57c75025333c12db482 Mon Sep 17 00:00:00 2001 From: DMleadgen Date: Fri, 27 Mar 2026 14:18:18 -0600 Subject: [PATCH] fix: replace header GHL machine modal --- components/get-free-machine-modal.tsx | 53 ++++++--------------------- 1 file changed, 11 insertions(+), 42 deletions(-) diff --git a/components/get-free-machine-modal.tsx b/components/get-free-machine-modal.tsx index 92aa01b6..c535bd6b 100644 --- a/components/get-free-machine-modal.tsx +++ b/components/get-free-machine-modal.tsx @@ -1,6 +1,5 @@ 'use client' -import { useEffect } from "react" import { Dialog, DialogContent, @@ -8,6 +7,7 @@ import { DialogHeader, DialogTitle, } from "@/components/ui/dialog" +import { RequestMachineForm } from "@/components/forms/request-machine-form" interface GetFreeMachineModalProps { open: boolean @@ -15,54 +15,23 @@ interface GetFreeMachineModalProps { } export function GetFreeMachineModal({ open, onOpenChange }: GetFreeMachineModalProps) { - useEffect(() => { - if (open) { - // Load the form embed script when modal opens - const script = document.createElement("script") - script.src = "https://link.sluice-box.io/js/form_embed.js" - script.async = true - document.body.appendChild(script) - - return () => { - if (document.body.contains(script)) { - document.body.removeChild(script) - } - } - } - }, [open]) - return ( - - - - Get Your Free Vending Machine + + + + Request a Free Vending Machine - - Fill out the form below and we'll contact you within 24 hours to discuss your needs. + + Tell us about your location and we'll review the best machine mix for the space. This is the same + Rocky intake form used on the site, not an external embed. -
-