export function getAboutUs(content: any, about: string) {
  const regex = /about:\s*{[^}]*message:\s*`([^`]*)`,/;

  const match = content.match(regex);
  if (match) {
    const current = match[1];

    if (current !== about) {
      content = content.replace(regex, (substring, ...args) => {
        return substring.replace(current, about);
      });
    }
  }

  return content;
}
