type Hobby = {
name: string;
description?: string;
stat?: Record<string, string>;
};
const personalInfo = {
name: "Daniel",
title: "Front-End Developer",
bio: "Building seamless web interfaces while indulging in tech and gaming hobbies.",
contact: {
email: "daniel.portonunez@gmail.com",
github: "https://www.github.com/dpnunez",
linkedin: "https://www.linkedin.com/in/daniel-porto-nunez/",
},
};
const hobbies: Hobby[] = [
{
name: "Mechanical Keyboards",
description: "Collecting, customizing, and experimenting with mechanical switches for the perfect typing feel.",
},
{
name: "Travel",
description: "Exploring new cultures and places, capturing inspiration for creative projects.",
},
{
name: "CS2",
stat: {
gc: 18,
faceit: 8
},
},
{
name: "League of Legends",
stat: {
main: "Cassiopeia",
peak_rank: "Platinum I"
},
},
];
export { personalInfo, hobbies };