-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperience.html
813 lines (777 loc) · 44.4 KB
/
experience.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio - Amanda Alling Andrén</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script>
$(function(){
$("#header").load("partials/header.html", function onclick(){
$('.sidenav').sidenav();
});
$("#fab").load("partials/fab.html", function onclick(){
$('.fixed-action-btn').floatingActionButton();
});
$("#footer").load("partials/footer.html");
});
</script>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="https://kit.fontawesome.com/a98657c293.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"/>
</head>
<body>
<header>
<div id="header"></div>
</header>
<!-- fixed action button FAB-->
<div id="fab"></div>
<!-- education section
<div class="parallax"><img src="images/background.png" alt="background image, pretty much just pixelated gray"></div>
<div class="container" style="margin-top: 20px;">
<h2 class="center">Education</h2>
<h5 class="header white-text hide-on-large-screen">
Changemaker Educations
</h5>
<h5 class="header" style="padding-left: 0;">Experience Designer</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">Game Design</li>
<li class="bullet">Game Psychology & Gamification</li>
<li class="bullet">User Research & Testing</li>
</ul>
</div>
<p class="light flow-text">
I gained extensive experience in UX design, client relations, and project management. In addition, I completed a side project for a game studio and participated in game jams to continually broaden my skillset </p>
</div>
</div>
</a>
<a href='https://craftacademy.se/english/curriculum/' target='_blank'>
<div class="center">
<img src="images/ca_logo.png" alt="Craft Academy Logo" class="img-half-out hide-on-small-screen">
</div>
<h5 class="header white-text hide-on-large-screen">
Craft Academy
</h5>
<h5 class="header" style="padding-left: 0;">Certified Full Stack Web Developer</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">HTML5</li>
<li class="bullet">CSS3</li>
<li class="bullet">JavaScript</li>
<li class="bullet">Ruby on Rails</li>
<li class="bullet">BDD & TDD</li>
<li class="bullet">Version control</li>
</ul>
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text">
Through participation in an intense 8 week programming bootcamp, I honed my ability to handle high pressure situations and become comfortable with uncertainty. I also developed a strong aptitude for quickly learning new skills and technologies.
I participated in an extremely intense 8 week programming bootcamp. I learned to handle the pressure and how to be comfortable in the uncertain. I also realized that I don't always need to know how things work beforehand, because I know how to learn it. -->
<!-- </p>
</div>
</div>
</a>
</div>
</div> -->
<!-- Work section -->
<div class="parallax-container">
<div class="parallax"><img src="images/background.png" alt="background image, pretty much just pixelated gray"></div>
<div class="container" style="margin-top: 20px;">
<h2 class="center">Work</h2>
<!-- <a href='https://fasttravelgames.com/' target='_blank'> -->
<div class="card-background card-border card row rounded_corners medium-screen-margin">
<div class="center">
<img src="images/ftg_logo2.png" alt="Fast Travel Games Logo" class="img-half-out hide-on-small-screen" style="width:10%">
</div>
<div class="col s12 m12 l12" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Fast Travel Games
</h5>
<h5 class="header" style="padding-left: 0;">Release Manager</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">Led store management and certification processes for Steam, PlayStation, Meta, Pico, and SideQuest.</li>
<li class="bullet">Oversaw game releases from store setup to post-launch support, including wishlists, early access, beta testing, pre-orders, and patches.</li>
<li class="bullet">Coordinated cross-functional teams across platform, marketing, and development to ensure smooth product launches.</li>
<li class="bullet">Ensured games met platform compliance and quality standards, handling age ratings, system requirements, and asset management.</li>
</ul>
<h5 class="header" style="padding-left: 0;">UX Designer & Researcher</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">First and only UX Designer at the company</li>
<li class="bullet">Developed and implemented UX research processes, guidelines, and best practices</li>
<li class="bullet">Conducted qualitative and quantitative research, including usability and sentiment playtests, surveys, and player behavior analysis</li>
<li class="bullet">Produced in-depth research reports with actionable recommendations to optimize game design and player experience</li>
<li class="bullet">Managed multiple concurrent playtest projects, ensuring timely delivery of insights and improvements</li>
</ul>
</div>
<div class="col s12 m12 l12" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text browser-default">
As the first UX Designer at <a href="https://fasttravelgames.com" target="_blank">Fast Travel Games</a>,
I introduced UX practices and drive their implementation in VR game development.
<!-- As the first UX Designer at <a href="https://fasttravelgames.com" target="_blank">Fast Travel Games</a>,
I introduced UX practices and drive their implementation in VR game development. -->
<!-- As the first UX Designer at <a href="https://fasttravelgames.com" target="_blank">Fast Travel Games</a>, -->
<!-- I'm introducing UX practices to the company and their game development process. It's a thrill to learn about UX in VR games! -->
<br><br>
I've worked with multiple titles including
I've worked with over 19 titles including
<a href="https://www.oculus.com/experiences/quest/4046879905345967/" target="_blank">Cities: VR</a>,
<a href="https://www.oculus.com/experiences/quest/5380153758692064?ranking_trace=105380645118255_5380153758692064_SKYLINEWEB_ee2184c4-2133-47a8-b0e9-01ad18b7a825&utm_source=ftgwebsite&utm_medium=productpage&utm_campaign=organic" target="_blank">Guardians Frontline</a>
<a href="https://www.oculus.com/experiences/quest/5380153758692064?ranking_trace=105380645118255_5380153758692064_SKYLINEWEB_ee2184c4-2133-47a8-b0e9-01ad18b7a825&utm_source=ftgwebsite&utm_medium=productpage&utm_campaign=organic" target="_blank">Guardians Frontline</a>,
<!-- <a href="https://fasttravelgames.com/games/weareone" target="_blank">We Are One</a>, -->
<!-- <a href="https://fasttravelgames.com/games/everslaughtinvasion" target="_blank">Everslaught Invasion</a>, -->
<a href="https://www.oculus.com/experiences/quest/5136958036416423?ranking_trace=105380645118255_5136958036416423_SKYLINEWEB_da45dd22-7003-4a50-8aa5-0808c93d00fc&utm_campaign=ftgwebsite&utm_source=productpage&utm_medium=organic" target="_blank">Broken Edge</a>,
<a href="https://www.oculus.com/experiences/quest/4302631119827554/?utm_campaign=ftgwebsite&utm_source=productpage&utm_medium=organic" target="_blank">Ghost Signal: A Stellaris Game</a>
<!-- <br><br> -->
<!-- <a href="ftg" class="btn-large waves-effect waves-light">Read more here</a> -->
</p>
</div>
</div>
<!-- </a> -->
<a href='https://craftacademy.se/english/curriculum/' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<div class="center">
<img src="images/ca_logo.png" alt="Craft Academy Logo" class="img-half-out hide-on-small-screen">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Craft Academy
</h5>
<h5 class="header" style="padding-left: 0;">Programming Intern</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">Programming website, fullstack</li>
<li class="bullet">Managed social media, copywriting</li>
<li class="bullet">Managed corporate promotion events</li>
</ul>
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text">
Following completion of the programming bootcamp, I was offered an internship and subsequent employment. Through this experience, I discovered a passion for UX design and pursued further study in this area with a focus on game design.
<!-- After the programming bootcamp I got the offer to intern and then work at CA. During this time I realized that UX was what really interested me, leading me to study UX Design with a game focus! -->
</p>
</div>
</div>
</a>
<a href='https://www.sfbok.se/' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<div class="center">
<img src="images/sfbok_logo_square.png" alt="Science Fiction Bokhandeln Logo" class="img-half-out hide-on-small-screen">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Science Fiction Bokhandeln
</h5>
<h5 class="header" style="padding-left: 0;">Store Employee</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">Customer service</li>
<li class="bullet">Strategic marketing initiatives</li>
<li class="bullet">Managed corporate promotion events</li>
</ul>
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text">
I'm dedicated to creating exceptional experiences for customers. I have a track record of successful project, campaign, and event management, including coordinating a masquerade ball at Nordiska Museet with 600 attendees.
<!-- I love to create great experiences for the customers! I've managed projects, campaigns, and events - even a masquerade ball at Nordiska Museet with 600 nerdy guests! -->
</p>
</div>
</div>
</a>
<div class="center" style="margin-bottom:40px;">
<!-- <embed src="images/Amanda_Alling_Andren_CV.pdf" width="800px" height="2100px"/> -->
<a href="images/Amanda_Alling_Andren_CV.pdf" target="_blank" class="btn-large waves-effect waves-light">Download CV</a>
</div>
</div>
</div>
</div>
<!-- education section -->
<div class="container" style="margin-top: 20px;">
<h2 class="center">Education</h2>
<a href='https://cmeducations.se/utbildningar/program/experience-designer' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<div class="center">
<img src="images/cme_logo1.png" alt="Changemaker Educations Logo" class="img-half-out hide-on-small-screen">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Changemaker Educations
</h5>
<h5 class="header" style="padding-left: 0;">Experience Designer</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">Game Design</li>
<li class="bullet">Game Psychology & Gamification</li>
<li class="bullet">UX & Game Thinking</li>
<li class="bullet">Alternate Reality Game (ARG)</li>
<li class="bullet">Augmented Reality (AR)</li>
<li class="bullet">Rapid Prototyping</li>
<li class="bullet">User Research & Testing</li>
</ul>
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text">
I gained extensive experience in UX design, client relations, and project management. In addition, I completed a side project for a game studio and participated in game jams to continually broaden my skillset </p>
</div>
</div>
</a>
<a href='https://craftacademy.se/english/curriculum/' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<div class="center">
<img src="images/ca_logo.png" alt="Craft Academy Logo" class="img-half-out hide-on-small-screen">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Craft Academy
</h5>
<h5 class="header" style="padding-left: 0;">Certified Full Stack Web Developer</h5>
<ul class="light flow-text browser-default" style="line-height: 2rem;">
<li class="bullet">HTML5</li>
<li class="bullet">CSS3</li>
<li class="bullet">JavaScript</li>
<li class="bullet">Ruby on Rails</li>
<li class="bullet">BDD & TDD</li>
<li class="bullet">Version control</li>
</ul>
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<p class="light flow-text">
Through participation in an intense 8 week programming bootcamp, I honed my ability to handle high pressure situations and become comfortable with uncertainty. I also developed a strong aptitude for quickly learning new skills and technologies.
<!-- I participated in an extremely intense 8 week programming bootcamp. I learned to handle the pressure and how to be comfortable in the uncertain. I also realized that I don't always need to know how things work beforehand, because I know how to learn it. -->
</p>
</div>
</div>
</a>
</div>
<!-- tools section -->
<div class="parallax-container">
<div class="parallax"><img src="images/background.png" alt="background image, pretty much just pixelated gray"></div>
<div class="container" style="margin-top: 20px;">
<h2 class="center">Tools</h2>
<div class="row card-background rounded_corners" id="tools" style="margin-bottom:40px;">
<div id="show-list">
<div class="col s12 m12 l12" style="padding-left: 30px;">
<h5 style="padding-top:10px;">UX Methods</h5>
<p class="light flow-text" style="margin:0px;;padding:0px;">
Design Thinking
<br>Design Sprints
<br>Double Diamond
<br>User Testing & Interviewing
<br>User Research & User Stories
<br>Storyboards & User Journeys
<br>Wireframing & Prototyping
<br>MVP Canvas
</p>
<h5 style="padding-top:10px">Tools</h5>
<p class="light flow-text" style="margin:0px;;padding:0px;">
Figma
<br>Miro, Trello, Jira
<br>Oculus
<br>Microsoft Office
<br>Photoshop
<br>HTML5
<br>CSS3
<br>Slack, Discord
</p>
</div>
</div>
<div class="row">
<div id="icons" class="col s12">
<div class="row" id="icons-list">
<!-- UX tools -->
<div class="col s12 m12 l12">
<!-- <h4 class="center light white-text" style="padding-top:10px;">UX Methods</h4> -->
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-lightbulb none"></i>
<b>Design Thinking</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Design Thinking
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-running none"></i>
<b>Design Sprints</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Design Sprints
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-gem none"></i>
<b>Double Diamond</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Double Diamond
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-vial none"></i>
<b>User Testing</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
User Testing
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-question-circle none"></i>
<b>User Interviews</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
User Interviews
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-search none"></i>
<b>User Research</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
User Research
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-route none"></i>
<b>Storyboards</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Storyboards
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-briefcase none"></i>
<b>User Journey</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
User Journey
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-id-card none"></i>
<b>User Stories</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
User Stories
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="far fa-newspaper none"></i>
<b>Wireframing</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Wireframing
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-tools none"></i>
<b>Prototyping</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Prototyping
</div>
<div id='icons'>
<div class='showtext-ux'>
<ul>
<li>
<i class="fas fa-money-check none center"></i>
<b>MVP Canvas</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
MVP Canvas
</div>
</div>
<!-- Programs and tools -->
<div class="row">
<div class="col s12 m12 l12">
<!-- <h4 class="center light white-text" style="padding-top:10px;">Programs & Tools</h4> -->
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class="fab fa-figma none" style="padding-top:0;"></i>
<b>Figma</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Figma
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='none'><img alt="Oculus logo" src="images/projects/logo-oculus_orange.svg" width="50" height="50"/></i>
<b>Oculus</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Oculus
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='devicon-photoshop-plain none'></i>
<b>Photoshop</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Photoshop
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='none'><img alt="Oculus logo" src="images/projects/jira_logo_orange.svg" width="50" height="50"/></i>
<b>Jira</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Jira
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='none'><img alt="Miro logo" src="images/projects/miro_icon.svg" width="50" height="50"/></i>
<b>Miro</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Miro
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='devicon-trello-plain none'></i>
<b>Trello</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Trello
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='devicon-html5-plain none'></i>
<b>HTML5</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
HTML5
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='devicon-css3-plain none'></i>
<b>CSS3</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
CSS3
</div>
<div id='icons'>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='devicon-slack-plain none'></i>
<b>Slack</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Slack
</div>
<div id='icons'>
<div class='showtext'>
<ul>
<li>
<i class='fab fa-discord none' style="padding-top:0;"></i>
<b>Discord</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Discord
</div>
<div class='showtext'>
<ul>
<li>
<i class='fab fa-microsoft none' style="padding-top:0;"></i>
<b>Microsoft Office</b>
</li>
</ul>
</div>
</div>
<div id='language-icons-replacement'>
Microsoft Office
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bonus projects section start -->
<div class="container" style="margin-top: 20px;">
<h2 class="center">Bonus Projects</h2>
<div class="card-background card-border card row rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/idga_logo.png" alt="IDGA Logo" class="img-half-out hide-on-small-screen" style="width:20%">
</div> -->
<!-- Cryptids -->
<div class="row" style="margin-top: 20px;">
<div class="col s12 m12 l6 center" style="padding-left: 30px">
<h5 class="header white-text hide-on-large-screen">
IDGA Summer Game Jam 2021
</h5>
<img alt="Cryptids game" style="padding:10px;" class="responsive-img materialboxed center" src="images/projects/cryptids/winner_logo.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="margin-top:20px;">Cryptids</h4>
<p class="light flow-text ">
Cryptids is a first person horror survival game, created during IDGA's Summer Game Jam 2021 together with 4 members of <a href="https://www.gameonmidsweden.com/skill-up" style="margin-bottom:20px;" target="_blank">Game On Skill Up</a>.
<br><br>
</p>
<a href="cryptids" class="btn-large waves-effect waves-light" style="margin-bottom:20px;">Read case study</a>
<a href="https://gamejolt.com/games/Cryptids/637147" style="margin-bottom:20px;" target="_blank" class="btn-large waves-effect waves-light">Try game</a>
</div>
</div>
<!-- Lemonade Apocalypse -->
<div class="row">
<div class="col s12 m12 l6 center" style="padding-left: 30px;">
<img alt="Game logo for Lemonade Apocalypse" style="padding:10px;" class="responsive-img materialboxed center" src="images/projects/lemonadeapocalypse/winner2.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="margin-top:0px;">Lemonade Apocalypse</h4>
<p class="light flow-text ">
Lemonade Apocalypse is a cozy management clicker, created together with 3 members of <a href="https://www.gameonmidsweden.com/skill-up" style="margin-bottom:20px;" target="_blank">Game On Skill Up</a>.
<br><br>The game gained over 100,000 players and holds a 95% positive rating on Steam.
</p>
<a href="lemonade_apocalypse" class="btn-large waves-effect waves-light" style="margin-bottom:20px;">Read case study</a>
<a href="https://store.steampowered.com/app/2861560/Lemonade_Apocalypse/" style="margin-bottom:20px;" target="_blank" class="btn-large waves-effect waves-light">Try the game</a>
<p class="light flow-text ">
<br><br><b>Roles:</b> UX & UI design, prototyping, testing, level & game design, story & game writing, documentation
<br><br><b>Tools:</b> Figma, Adobe Photoshop, Unity, Trello
</p>
</div>
</div>
</div>
<a href='arcade' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/tekniska_logo.png" alt="Tekniska Museet Logo" class="img-half-out hide-on-small-screen">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Tekniska Museet
</h5>
<img alt="ARcade game" style="padding:50px;margin-top:20px;" class="responsive-img materialboxed center" src="images/projects/arcade/mockup.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">ARcade</h4>
<p class="light flow-text">
<b>Brief:</b> Create an engaging AR game filter that enhances the experience of the exhibition Play Beyond Play.
<br><br><b>Roles:</b> UX Design, developing, facilitating, client contact, interviewing, testing, game & visual design
<br><br><b>Tools:</b> Spark AR, Miro, Adobe Illustrator, Adobe Photoshop, Cinema4D </p>
</div>
</div>
</a>
<a href='construct&combat' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/worldbayondwar_logo2.png" alt="World Beyond War Logo" class="img-half-out hide-on-small-screen">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
World Beyond War
</h5>
<img alt="Contruct & Combat logo" class="materialboxed responsive-img" src="images/projects/construct&combat/mockup.png" style="padding:30px;margin-top:20px;">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">Construct & Combat</h4>
<p class="light flow-text">
<b>Brief:</b> Design a game for the nonviolent movement World Beyond War, so that they can use it to teach about the consequences of war.
<br><br><b>Roles:</b> UX Design, facilitating, documenting, prototyping, testing, game & visual design
<br><br><b>Tools:</b> Tabletop Simulator, Miro, Design Thinking, Photoshop, Illustrator
</p>
</div>
</div>
</a>
<a href='swingspeedradar' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/watchitgolf_logo.png" alt="WatchIt Golf Logo" class="img-half-out hide-on-small-screen" style="width:10%">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
WatchIt Golf
</h5>
<img alt="Swing Speed Radar landing page" style="padding:30px;margin-top:20px;" class="responsive-img materialboxed center" src="images/projects/swingspeedradar/mockup.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">Swing Speed Radar</h4>
<p class="light flow-text">
<b>Brief:</b> Increase WatchItGolf's paying customer base by incorporating gamification in their app Swing Speed Radar, which helps their customers perfect their golf swing.
<br><br><b>Roles:</b> UX Design, facilitating, interviewing, prototyping, gamification & visual design
<br><br><b>Tools:</b> Figma, Miro, Design Sprint
</p>
</div>
</div>
</a>
<a href='dreamsacademy' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/projects/dreamsacademy/dreams_small_logo.png" alt="Dreams Logo" class="img-half-out hide-on-small-screen" style="width:10%">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h5 class="header white-text hide-on-large-screen">
Dreams
</h5>
<img alt="Dreams Academy overview page" style="padding:30px;margin-top:20px;" class="responsive-img materialboxed center" src="images/projects/dreamsacademy/mockup.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">Dreams Academy</h4>
<p class="light flow-text">
<b>Brief:</b> Help Dreams incorporate education about economics in their savings app, so that their customers can learn in a helpful and pain free way in their savings app
<br><br><b>Roles:</b> UX Design, project managing, interviewing, prototyping, gamification & visual design
<br><br><b>Tools:</b> Figma, Miro, Design Sprint
</p>
</div>
</div>
</a>
<a href='unravelarg' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/projects/dreamsacademy/dreams_small_logo.png" alt="Dreams Logo" class="img-half-out hide-on-small-screen" style="width:10%">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<!-- <h5 class="header white-text hide-on-large-screen">
Unravel - The Alternate Reality Game
</h5> -->
<img alt="Unravel game poster" style="padding:30px;margin-top:20px;" class="responsive-img materialboxed center" src="images/projects/unravelarg/mockup_stand.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">Unravel - The Alternate Reality Game</h4>
<p class="light flow-text">
<b>School Brief:</b> We designed a fake ARG experience, connecting the game Unravel with the craft store Panduro, to create a puzzle crafting adventure where participants bond with each other.
<br><br><b>Roles:</b> UX Design, project management, director, facilitator, game & artifact designer
<br><br><b>Tools:</b> Miro, Adobe Photoshop
</p>
</div>
</div>
</a>
<a href='chubbyhamsterknight' target='_blank'>
<div class="card-background card-border card row hoverable rounded_corners medium-screen-margin">
<!-- <div class="center">
<img src="images/projects/dreamsacademy/dreams_small_logo.png" alt="Dreams Logo" class="img-half-out hide-on-small-screen" style="width:10%">
</div> -->
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<!-- <h5 class="header white-text hide-on-large-screen">
</h5> -->
<img alt="Chubby Hamster Knight game" style="padding:30px;margin-top:20px;" class="responsive-img materialboxed center" src="images/projects/chubbyhamsterknight/mockup.png">
</div>
<div class="col s12 m12 l6" style="padding-left: 30px;margin-top: 20px;">
<h4 style="padding-top:20px">Chubby Hamster Knight</h4>
<p class="light flow-text">
<b>Hobby Project:</b> My first video game! I created a 2D platformer to learn how Unity works. It was fun to create 2D art, code, and design levels and the story!
<br><br><b>Tools:</b> Unity, Adobe Photoshop, C#
</p>
</div>
</div>
</a>
</div>
<!-- bonus projects section end -->
<!-- footer & contact section -->
<footer class="page-footer black" id="contact">
<div id="footer"></div>
</footer>
</body>
</html>