-
Notifications
You must be signed in to change notification settings - Fork 0
/
properties.js
75 lines (71 loc) · 2.24 KB
/
properties.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const about = {
person: {
title: "Bruno Silva | @silv4b",
job: "Developer and UI Designer",
desc: "Feito com código 👨💻"
}
};
const spotifyplaylists = {
playlist_1: {
nome: "🎵 Songs to not be sad",
link: "https://open.spotify.com/playlist/1sBicr7fa2fbPJlBNq6hCX",
image: "https://i.scdn.co/image/ab67706c0000bebb86aa1b28e2f2d22a9811222b",
desc: "Uma playlist bem aleatória pra você curtir, variando desde de rap até theme songs de animes.",
cover: "card-pl-art"
},
playlist_2: {
nome: "🎶 Songs to not be sad 2.0",
link: "https://open.spotify.com/playlist/7FCrKytZs7U3Mm4WXWabVm",
image: "https://i.scdn.co/image/ab67706c0000bebb7490f9f68e3766e57c6fd4e3",
desc: "Versão 2.0 da playlist anterior, mais aleatória, mas interessante, só vai!",
cover: "card-pl-art"
},
playlist_3: {
nome: "🎙️ Songs to not be sad 3.0 MF",
link: "https://open.spotify.com/playlist/2NdUEXKA08hbaD7ootIQ3h",
image: "https://i.scdn.co/image/ab67706c0000bebb50f8e9203260aa5456ab630e",
desc: "Versão 3.0 MotherFucker Mode!",
cover: "card-pl-art"
},
playlist_4: {
nome: "📣 Songs to not be sad 4.0",
link: "https://open.spotify.com/playlist/5xYe67lUKvlGRM0tzESNjG",
image: "https://i.scdn.co/image/ab67706c0000bebb6be35ec6d7552a56ff51d0a9",
desc: "Versão 4.0 Not Bad Mode!",
cover: "card-pl-art"
}
};
const social = {
LinkedIn: {
social: "LinkedIn",
href: "https://www.linkedin.com/in/silv4b/",
iclass: "bx bxl-linkedin-square",
},
Instagram: {
social: "Instagram",
href: "https://www.instagram.com/uisilvab/",
iclass: "bx bxl-instagram",
},
Figma: {
social: "Figma",
href: "https://www.figma.com/@silv4b",
iclass: "bx bxl-figma",
},
Github: {
social: "Github",
href: "https://github.com/silv4b",
iclass: "bx bxl-github",
},
VsCode: {
social: "VS Code Marketplace",
href: "https://marketplace.visualstudio.com/publishers/silv4b",
iclass: "bx bxl-visual-studio",
},
Email: {
social: "Email",
href: "mailto:[email protected]",
iclass: "bx bx-mail-send",
}
};
const imageFooter = "https://raw.githubusercontent.com/silv4b/site-vue/5f3230901f5a602e3b69ef8c81c3fd30b9109f5a/src/assets/logo.svg?token=AEJJ7YUABF7DUNQZ2LMALI3A5QZTO";
export { about, social, spotifyplaylists, imageFooter };