import { pushDatalayer } from '../../utils/pushDatalayer'; import type { CustomerLead } from '../../types'; export function generateLead(customer: CustomerLead) { pushDatalayer({ event: 'generate_lead', name: customer.name, email: customer.email, phone: customer.phone, }); }