import axios from "axios"; export function sendContactFormRequest(body: { contact: string; whoami: string; }) { return axios("https://squiz.pena.digital/feedback/callme", { method: "POST", headers: { "Content-Type": "application/json", }, data: body, }); }