1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const personal = {
  name: "Ricardo García",
  title: ["Computer Systems Engineer", "FullStack Developer"],
  email: 'me@ricardogarcia.dev',
  education: [
    {
      school: "Instituto Tecnológico Superior De Zapopan",
      website: "http://itszapopan.edu.mx/",
      degree: "Computer Systems Engineer",
      field: "Software Engineering",
    },
  ],
  location: ["Zapopan, Mexico"]
};

const expertise = ["Web development", "Mobile development", "Microservices"];

const interests = ["SEO", "Digital Marketing"];

const experience = [
  {
    company: "Mex Rent A Car",
    website: "https://www.mexrentacar.com/",
    title: "Software Developer",
    from: "April 2018",
    to: "Present",
    description: "Development web and mobile iOS and microservices for mobility projects.",
  },
  {
    company: "INFEJAL",
    website: "https://infejal.gob.mx/",
    title: "Software Engineer",
    from: "May 2017",
    to: "March 2018",
    description: "Member of the web system development team of INFEJAL",
  },
  {
    company: "UAG",
    website: "http://www.uag.mx/",
    title: "Web Analyst Programmer",
    from: "December 2016",
    to: "May 2017",
    description: " Analysis and development of the clinical record module for the InfoHuman system.",
  },
  {
    company: "SIOP",
    website: "https://www.siop.jalisco.gob.mx/",
    title: "Software Engineer",
    from: "September 2014",
    to: "November 2016",
    description: " Member of the SECIP system development team.",
  },
];