/* global React */
// ============================================================
// CDN, Enquiry form. Thin wrapper that delegates the standardised
// field set to the site-wide <UDForm> (theme="cdn"). Left-half copy
// stays per-page; CRM field names + hidden source meta live in UDForm.
// ============================================================
function CdnEnquiryForm({ prefix = 'enq' }) {
  if (typeof window === 'undefined' || !window.UDForm) return null;
  return (
    <window.UDForm
      theme="cdn"
      card={true}
      formId={`cdn-${prefix}`}
      source={{ subdomain: 'cdn', page: prefix, product: 'cdn' }}
      submitLabel="提交查詢 →"
    />
  );
}

window.CdnEnquiryForm = CdnEnquiryForm;
