Isaac Vazquez
Explorer
isaacvqz.dev
welcome.js
work_experience.js
skills.js
.gitignore
package.json
README.md
welcome.js
work_experience.js
skills.js
.gitignore
package.json
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Isaac Vazquez - CEO at KYC SYSTEMS

class CEO {
  constructor() {
    this.name = 'Isaac Vazquez';
    this.company = 'KYC SYSTEMS';
    this.role = 'CEO & Founder';
    this.industry = 'Financial Entities and Vulnerable Activities in Mexico';
    this.leadership = [
      'Strategic Vision', 'Product Innovation', 'Team Building',
      'Business Development', 'Regulatory Compliance'
    ];
    this.expertise = [
      'Anti-Money Laundering Systems', 'Risk Management',
      'Full-Stack Development', 'AML Solutions'
    ];
    this.mission = 'Pioneering automated compliance solutions for financial security';
    this.experience = '7+ years leading KYC SYSTEMS';
    this.headquarters = 'Mexico City, Mexico';
    this.founded = '2018';
  }

  introduce() {
    return `Hello! I'm ${this.name}, ${this.role} of ${this.company}.

            Leading Mexico's premier Anti-Money Laundering software company,
            transforming financial compliance through innovative technology.

            ${this.mission}`;
  }

  getContact() {
    return {
      email: 'isaacvqz@gmail.com',
      work_email: 'isaac@kyc-systems.com',
      github: 'github.com/isaacvqz',
      linkedin: 'https://www.linkedin.com/in/kyc-isaacvqz/'
    };
  }
}

// Initialize developer instance
const isaac = new CEO();

// Display introduction
console.log(isaac.introduce());
console.log('Skills:', isaac.skills);
console.log('Contact:', isaac.getContact());

// Ready to collaborate!
export default isaac;
Minimap
main
0
Ln 12, Col 35