This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
113 lines (112 loc) · 4.4 KB
/
about.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
---
layout: default
section_id: pages
members:
- name: Elio Qoshi
position: Founder & Design Lead
avatar: images/about/ElioHeadshot.jpg
avatar_hover: images/about/ElioHeadshot.jpg
socials:
- name: fa fa-globe
url: https://elioqoshi.me/
- name: fab fa-twitter
url: https://twitter.com/elioqoshi
- name: fa fa-envelope
url: mailto:[email protected]
- name: fas fa-key
url: https://raw.githubusercontent.com/uracreative/ura.design/main/pgp-public-keys/publickey.elio%40ura.design.asc
- name: Renata Gegaj
position: Usability Researcher
avatar: images/about/RenataHeadshot.jpg
avatar_hover: images/about/RenataHeadshot.jpg
socials:
- name: fa fa-globe
url: https://renatagegaj.wordpress.com/
- name: fab fa-twitter
url: https://twitter.com/RenataGegaj
- name: fa fa-envelope
url: mailto:[email protected]
- name: fas fa-key
url: https://raw.githubusercontent.com/uracreative/ura.design/main/pgp-public-keys/publickey.renata%40ura.design.asc
- name: Anja Xhakani
position: System Administrator
avatar: images/about/AnjaHeadshot.jpg
avatar_hover: images/about/AnjaHeadshot.jpg
socials:
- name: fab fa-twitter
url: https://twitter.com/anjaxhakani
- name: fa fa-envelope
url: mailto:[email protected]
- name: fas fa-key
url: https://raw.githubusercontent.com/uracreative/ura.design/main/pgp-public-keys/publickey.anja%40ura.design.asc
- name: Ergi Shkëlzeni
position: Designer
avatar: images/about/ErgiHeadshot.jpg
avatar_hover: images/about/ErgiHeadshot.jpg
socials:
- name: fab fa-github
url: https://github.com/ergish
- name: fa fa-envelope
url: mailto:[email protected]
- name: fas fa-key
url: https://raw.githubusercontent.com/uracreative/ura.design/main/pgp-public-keys/publickey.ergi%40ura.design.asc
- name: Anxhelo Lushka
position: Frontend Dev & Designer
avatar: images/about/AnxheloHeadshot.jpg
avatar_hover: images/about/AnxheloHeadshot.jpg
socials:
- name: fa fa-globe
url: https://lushka.al/
- name: fab fa-github
url: https://github.com/AnXh3L0
- name: fa fa-envelope
url: mailto:[email protected]
- name: fas fa-key
url: https://raw.githubusercontent.com/uracreative/ura.design/main/pgp-public-keys/publickey.anxhelo%40ura.design.asc
---
<div class="full new" style="background-color: #3399d4;">
<div class="section-title new">
<div class="row">
<div class="medium-10 medium-centered columns">
<h1 style="color: #fff; font-size: 2rem;" class="wow slideInDown">About Us</h1>
</div>
</div>
</div>
</div>
<div class="full text">
<div class="row">
<div class="large-12 large-centered columns">
<p>Ura is a digital studio which focuses on visual communication solutions tailored for Open Source and Internet Freedom projects. Ura was founded in 2016 in Albania to cater to the ever-rising demand for Usability and Design services in Open Source Software. We specialize in UX Design, Design Systems Research and Visual Identity.</p>
<p>Our work can be seen across various Open Source projects such as <a href="https://mozilla.org" target="_blank">Mozilla</a>, <a href="https://www.torproject.org" target="_blank">The Tor Project</a> and <a href="https://www.linuxfoundation.org" target="_blank">The Linux Foundation</a>.</p>
<p>We also develop <a href="https://identihub.co" target="_blank">Identihub</a>, Open Source Software to self-host visual assets and identities to ease collaboration between designers and developers.</p>
</div>
</div>
<div class="two spacing"></div>
<div class="section-title">
<div class="row">
<div class="medium-10 medium-centered columns">
<h2>Core Team</h2>
<p>The usual suspects</p>
</div>
</div>
</div>
<div class="row">
{% for member in page.members %}
<div class="medium-4 columns">
<div class="member">
<img class="lazy" data-src="{{site.url}}/{{member.avatar}}" alt="">
<img class="colored lazy" data-src="{{site.url}}/{{member.avatar_hover}}" alt="">
<div class="member-info">
<h4>{{member.name}}</h4>
<p class="position">{{member.position}}</p>
<ul class="socials">
{% for social in member.socials %}
<li><a href="{{social.url}}"><i class="{{social.name}}"></i></a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
</div>