-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__index.html
119 lines (105 loc) · 4.64 KB
/
__index.html
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-97G01186E7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-97G01186E7');
</script>
<script>
</script>
</head>
<body>
<header>
<h1 class="margin-bot-none">JORENS MERENJANU</h1>
<h2 class="font-light margin-top-none">Full stack Developer & Designer</h2>
</header>
<div class="content">
<p>
Hi! I'm Jorens. I'm a full stack developer & designer
from Latvia who has a deep passion for coding and design.
In my spare time I like to draw, cook, code and design websites.
But I'm more than just a developer - I have an entrepreneural mindset.
I try to contribute to the project and business as a whole in any way I can,
because I believe that the success of my clients leads to my own success.
I will go out of my way to overdeliver, take initiative where appropriate,
offer suggestions and share my perspective.
</p>
<ul>
<li><a href="https://github.com/JorensM">GitHub</a></li>
<li><a href="https://www.upwork.com/freelancers/~01e315dadc75c62d93">Upwork</a></li>
<li><a href="https://www.linkedin.com/in/jorens-merenjanu-70195b217/">LinkedIn</a></li>
</ul>
<!-- <div class="link" onclick="scrollToWork()">
See my work
</div> -->
<h3>My skills</h3>
<p>I have experience with <b>web design</b>, <b>web development</b>, <b>desktop app development</b>, <b>mobile app development</b>
And I have experience with many different tools, frameworks, languages, most notably:</p>
<ul id="skills-list">
</ul>
<h3>What I offer</h3>
<ul>
<li>Website design & development (backend & frontend)</li>
<li>Dekstop app design & development</li>
<li>Mobile app design & development</li>
<li>4 years of professional web development experience</li>
<li>Frequent and honest communication</li>
<li>Clean, scalable, maintainable and well-documented code</li>
<li>Delivering on time</li>
</ul>
<h3 id="my-work">My work</h3>
<p>Here you can see samples of work that I've done</p>
<h4>
Development:
</h4>
<ul>
<li><a href="my-work/football-ticket-shop.html">Football ticket shop</a></li>
<li><a href="https://www.bookibo.com/">Bookibo</a> (Helped develop some pages and UI elements of the web app)</li>
<li><a href="https://www.techandbusinesstips.com/">techandbusinesstips.com</a> - My personal blog</li>
</ul>
</div>
<div style="display: none">
Google Analytics events test.
<a href="test.css">test.css</a>
<a href="othertest.css">othertest.css</a>
<a href="thirdtest.css">thirdtest.css</a>
</div>
<script>
const skills_list = [
"PHP",
"JavaScript/TypeScript",
"HTML",
"CSS",
"React",
"NodeJS",
"Next.js",
"Java",
"React Native",
"WordPress",
"Godot"
];
const skills_list_element = document.getElementById("skills-list");
skills_list.forEach((skill) => {
skills_list_element.insertAdjacentHTML("beforeend", `<li>${skill}</li>`)
})
let links = document.getElementsByTagName("a");
for(let link of links){
link.addEventListener("click", function(){
gtag("event", "link clicked", {
"event_category": "general",
"event_label": link.getAttribute("href")
})
})
}
function scrollToWork(){
document.getElementById("my-work").scrollIntoView();
}
</script>
</body>
</html>