'use client' import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog" import { RequestMachineForm } from "@/components/forms/request-machine-form" interface GetFreeMachineModalProps { open: boolean onOpenChange: (open: boolean) => void } export function GetFreeMachineModal({ open, onOpenChange }: GetFreeMachineModalProps) { return ( Request a Free Vending Machine 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.
onOpenChange(false)} />
) }