1
2 const contacts: Record<string, string | string[]> = {
3 github: "https://github.com/f01zy",
4 telegram: "https://t.me/aminov_ali",
5 discord: "https://discord.com/users/858285755658666034",
6 email: [
7 "[email protected]",
8 "[email protected]"
9 ]
10 };
11
12 const social: Record<string, string> = {
13 leetcode: "https://leetcode.com/u/f01zy/",
14 anilist: "https://anilist.co/user/f01zy/"
15 };
16