-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathuser.js
More file actions
84 lines (74 loc) · 3.31 KB
/
user.js
File metadata and controls
84 lines (74 loc) · 3.31 KB
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
76
77
78
79
80
81
82
83
84
const INFO = {
main: {
title: "Reactfolio",
name: "Adrain Ortiz",
email: "adrianortiz1025@gmail.com",
logo: "../LOGO.jpeg",
},
socials: {
twitter: "https://twitter.com/",
github: "https://github.com/",
linkedin: "https://linkedin.com/",
instagram: "https://instagram.com/",
stackoverflow: "https://stackoverflow.com/",
facebook: "https://facebook.com/",
},
homepage: {
title: "Second Year at the University of Puerto Rico",
description:
"I am a backend developer with expertise in Node.js. I have experience in building scalable, secure and reliable web applications using various frameworks and technologies. I enjoy solving complex problems and learning new skills. I am passionate about creating high-quality code that follows best practices and industry standards. I am always looking for new challenges and opportunities to grow as a developer.",
},
about: {
title: "I’m Tharindu N. I live in Sri Lanka, where I design the future.",
description:
"I've worked on a variety of projects over the years and I'm proud of the progress I've made. Many of these projects are open-source and available for others to explore and contribute to. If you're interested in any of the projects I've worked on, please feel free to check out the code and suggest any improvements or enhancements you might have in mind. Collaborating with others is a great way to learn and grow, and I'm always open to new ideas and feedback.",
},
articles: {
title: "I'm passionate about pushing the boundaries of what's possible and inspiring the next generation of innovators.",
description:
"Chronological collection of my long-form thoughts on programming, leadership, product design, and more.",
},
projects: [
{
title: "Space Station Tracker",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/javascript/javascript.png",
linkText: "View Project",
link: "https://github.com",
},
{
title: "BrickFLow",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/python/python.png",
linkText: "View Project",
link: "https://github.com",
},
{
title: "Project 3",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/html/html.png",
linkText: "View Project",
link: "https://github.com",
},
{
title: "Project 4",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/javascript/javascript.png",
linkText: "View Project",
link: "https://github.com",
},
{
title: "Project 5",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/javascript/javascript.png",
linkText: "View Project",
link: "https://github.com",
},
],
};
export default INFO;