whoami > dpnunez

1type Hobby = {
2  name: string;
3  description?: string;
4  stat?: Record<string, string>;
5};
6
7const personalInfo = {
8  name: "Daniel",
9  title: "Front-End Developer",
10  bio: "Building seamless web interfaces while indulging in tech and gaming hobbies.",
11  contact: {
12    email: "daniel.portonunez@gmail.com",
13    github: "https://www.github.com/dpnunez",
14    linkedin: "https://www.linkedin.com/in/daniel-porto-nunez/",
15  },
16};
17
18const hobbies: Hobby[] = [
19  {
20    name: "Mechanical Keyboards",
21    description: "Collecting, customizing, and experimenting with mechanical switches for the perfect typing feel.",
22  },
23  {
24    name: "Travel",
25    description: "Exploring new cultures and places, capturing inspiration for creative projects.",
26  },
27  {
28    name: "CS2",
29    stat: {
30      gc: 18,
31      faceit: 8
32    },
33  },
34  {
35    name: "League of Legends", // retired 🙏
36    stat: {
37      main: "Cassiopeia",
38      peak_rank: "Platinum I"
39    },
40  },
41];
42
43export { personalInfo, hobbies };