-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
65 lines (60 loc) · 1.41 KB
/
config.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
module.exports = {
email: "ayatalzidi2000@gmail.com",
socialMedia: [
{
name: "GitHub",
url: "https://github.com/ayatakinci",
},
{
name: "Instagram",
url: "https://www.instagram.com/frontendsimply/",
},
{
name: "Linkedin",
url: "https://www.linkedin.com/in/ayat-akinci/",
},
{
name: "Codepen",
url: "https://codepen.io/ayat0110",
},
],
navLinks: [
{
name: "About",
url: "/#about",
},
{
name: "Experience",
url: "/#jobs",
},
{
name: "Works",
url: "/#works",
},
{
name: "Contact",
url: "/#contact",
},
],
projectNames: ["portfolio-nuxt", "vue-electron"],
colors: {
green: "#64ffda",
navy: "#0a192f",
darkNavy: "#020c1b",
},
srConfig: (delay = 200, viewFactor = 0.25) => ({
origin: "bottom",
distance: "20px",
duration: 500,
delay,
rotate: { x: 0, y: 0, z: 0 },
opacity: 0,
scale: 1,
easing: "cubic-bezier(0.645, 0.045, 0.355, 1)",
mobile: true,
reset: false,
useDelay: "always",
viewFactor,
viewOffset: { top: 0, right: 0, bottom: 0, left: 0 },
}),
};