async function getPhone(html: string) {
  const $ = cheerio.load(html);
  const phone = $('li.phone > p').text();
  return phone.trim();
}