async function getName(html: string) {
  const $ = cheerio.load(html);
  const name = $('h4').text();
  return name.trim();
}