import SoftwareDeveloper from 'thompsonemerson';

class Bio extends SoftwareDeveloper {
  name     = 'Mohammad Vahedi';
  title    = 'Software Engineer';
  company  = 'Snappfood';
  location = 'Tehran, IR';
}

class Skills extends SoftwareDeveloper {
  languages  = ['Go', 'JavaScript'];
  databases  = ['MySQL', 'PostgreSQL'];
  frameworks = ['Gin', 'React'];
}