-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIMGNRY.vue
980 lines (960 loc) · 46.5 KB
/
IMGNRY.vue
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
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
<template>
<div>
<div id="top" class="nightsky-section hero">
<div class="night-sky-container"></div>
<div
data-w-id="4dc4cebe-3d59-26d5-697d-edd7624909f3"
data-animation-type="lottie"
data-src="https://uploads-ssl.webflow.com/5dd67ddb4354095587056f6b/5dd67ddb435409126c05700b_anim-logo.json"
data-loop="0"
data-direction="1"
data-autoplay="0"
data-is-ix2-target="1"
data-renderer="svg"
data-default-duration="5.005004801146985"
data-duration="0"
class="imgnry-anim"
></div>
<h1
data-w-id="34772d09-2899-03d5-0c54-f81ee4d21d8b"
style="opacity:0;-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
>
We create digital glory for mighty corporations, award winning agencies and for the simple love of it.
</h1>
<a
href="mailto:[email protected]"
data-w-id="34772d09-2899-03d5-0c54-f81ee4d21d8b"
style="opacity:0;-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="button-email w-button"
>
<div
data-w-id="fa8747dc-ed1e-8b22-bcd9-a271b5adbd11"
data-animation-type="lottie"
data-src="https://uploads-ssl.webflow.com/5dd67ddb4354095587056f6b/5dd67ddb435409c883056fff_anim-bouncy-arrow.json"
data-loop="1"
data-direction="1"
data-autoplay="1"
data-is-ix2-target="0"
data-renderer="svg"
data-default-duration="1.0010009602293968"
data-duration="0"
class="lottie-animation-3 bouncing-arrow"
></div>
</div>
<div class="projects-section">
<div class="container-max-1320">
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">The National<br/>Library of Sweden</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="21cc8097-8beb-dd68-cdfd-24c3b97416f6" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="333849fc-cdf4-cf26-68aa-9be11dc69ae8" class="w-layout-grid project-about-section">
<div id="w-node-342157ea93fb-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Kristofer has laid the foundation for the form and design of our new Libris search exceptionally. It's evident that he enjoys
what he does! He is serious, systematic, and motivated, and with his extensive experience, he listens curiously to feedback
from others. Creativity combined with an eye for detail means that he delivers well-thought-out solutions beyond expectations.
</blockquote>
<div class="quote-byline">Maria Kadesjö, Head of Development and Design, National Library of Sweden</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
The Swedish National Library Authority, a.k.a. Kungliga Biblioteket, granted me the privilege of creating a new graphical profile
and completely redesigning the user experience of their most prominent service, Libris. The primary goal was to develop a search
service that provides librarians and the people of Sweden with a straightforward way to find books and check their availability
for lending from local libraries.<br/>
<a href="https://youtu.be/SZdT_-c-UoM">Video documentation in Swedish</a>
</p>
</div>
<div id="w-node-342157ea9407-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Art Direction</div>
<div class="tag">Graphic Profile</div>
<div class="tag">Logo</div>
<div class="tag">Design System</div>
<div class="tag">UX</div>
<div class="tag">UI</div>
<div class="tag">Web</div>
<div class="tag">User testing</div>
<div class="tag">WCAG</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-library-1.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-library-2a.png"></lazy-img>
<lazy-img name="p-library-2b.png"></lazy-img>
<lazy-img name="p-library-2c.png"></lazy-img>
<lazy-img name="p-library-2d.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-library-3a.png"></lazy-img>
<lazy-img name="p-library-3b.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-library-4a.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Halebop</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="21cc8097-8beb-dd68-cdfd-24c3b97416f6" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="333849fc-cdf4-cf26-68aa-9be11dc69ae8" class="w-layout-grid project-about-section">
<div id="w-node-342157ea93fb-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Kristofer was given the project scope to establish a new design system for Halebop and ended up not only delivering above and
beyond the original scope, but he also became a core contributor in the Halebop team. His approach was refreshing and integral to
where Halebop is today.
</blockquote>
<div class="quote-byline">Emma Craig, Head of Halebop</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Sweden's happiest telecom company! During my year, I made them a new design system to optimize, modernize and align their solid
visual brand. I also redesigned most of the primary pages of their service, including the checkout flow.
</p>
</div>
<div id="w-node-342157ea9407-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Art Direction</div>
<div class="tag">Design System</div>
<div class="tag">UI</div>
<div class="tag">UX</div>
<div class="tag">Web</div>
<div class="tag">App</div>
<div class="tag">User testing</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-halebop-1.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-halebop-2a.png"></lazy-img>
<lazy-img name="p-halebop-2b.png"></lazy-img>
<lazy-img name="p-halebop-2c.png"></lazy-img>
<lazy-img name="p-halebop-2d.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-halebop-3.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-halebop-4.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Soundtrack</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="21cc8097-8beb-dd68-cdfd-24c3b97416f6" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="333849fc-cdf4-cf26-68aa-9be11dc69ae8" class="w-layout-grid project-about-section">
<div id="w-node-342157ea93fb-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
With an eye for detail and a comprehensive systematic approach to problem solving and design, Kristofer is a very valuable
contributor to both product solutions and as a team player. His long experience is also reflected in his humble approach and very
likeable personality.
</blockquote>
<div class="quote-byline">Patrik Axelsson, VP Product, Soundtrack</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Soundtrack, known initially as Spotify For Business, is a massive music service that offers a legal way to play music in public
spaces. Kristofer designed the entire product for over two years. Including building a design system and streamlining the process of
creating over 1000 playlist cover arts.
</p>
</div>
<div id="w-node-342157ea9407-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Art Direction</div>
<div class="tag">Design System</div>
<div class="tag">UI</div>
<div class="tag">UX</div>
<div class="tag">Web</div>
<div class="tag">App</div>
<div class="tag">Cover Art</div>
<div class="tag">Icons</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-soundtrack-1.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-soundtrack-2a.png"></lazy-img>
<lazy-img name="p-soundtrack-2b.png"></lazy-img>
<lazy-img name="p-soundtrack-2c.png"></lazy-img>
<lazy-img name="p-soundtrack-2d.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-soundtrack-3a.png"></lazy-img>
<lazy-img name="p-soundtrack-3b.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-soundtrack-4a.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _6col">
<lazy-img name="p-soundtrack-5a.png"></lazy-img>
<lazy-img name="p-soundtrack-5b.png"></lazy-img>
<lazy-img name="p-soundtrack-5c.png"></lazy-img>
<lazy-img name="p-soundtrack-5d.png"></lazy-img>
<lazy-img name="p-soundtrack-5e.png"></lazy-img>
<lazy-img name="p-soundtrack-5f.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _6col">
<lazy-img name="p-soundtrack-6a.png"></lazy-img>
<lazy-img name="p-soundtrack-6b.png"></lazy-img>
<lazy-img name="p-soundtrack-6c.png"></lazy-img>
<lazy-img name="p-soundtrack-6d.png"></lazy-img>
<lazy-img name="p-soundtrack-6e.png"></lazy-img>
<lazy-img name="p-soundtrack-6f.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-soundtrack-7a.png"></lazy-img>
<lazy-img name="p-soundtrack-7b.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Picular</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="a73b6af2-1979-2ce9-74c9-84e6cccc42ff" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="a73b6af2-1979-2ce9-74c9-84e6cccc4302" class="w-layout-grid project-about-section">
<div id="w-node-84e6cccc4303-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Great tools for organizing and improving my database of thousands of photos over a long life. Fille and Kristofer have patiently
answered every question.
</blockquote>
<div class="quote-byline">Inger Kari Nerheim, Happy Customer 🥰</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
The current inhouse project can fairly be called digital hybris. Our two-man-crew aim to beat Google, Apple, Adobe and Microsoft in
building the worlds greatest photo organizing service.
</p>
</div>
<div id="w-node-84e6cccc430f-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-picular-1.jpg"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-picular-2a.png"></lazy-img>
<lazy-img name="p-picular-2b.png"></lazy-img>
<lazy-img name="p-picular-3a.png"></lazy-img>
<lazy-img name="p-picular-3b.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-picular-4a.png"></lazy-img>
<lazy-img name="p-picular-4b.png"></lazy-img>
<lazy-img name="p-picular-4c.png"></lazy-img>
<lazy-img name="p-picular-4d.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">TUI</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="21cc8097-8beb-dd68-cdfd-24c3b97416f6" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="333849fc-cdf4-cf26-68aa-9be11dc69ae8" class="w-layout-grid project-about-section">
<div id="w-node-342157ea93fb-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Kristofer is one of a kind. Wise, experienced and at the same time all-seeing and curious. With integrity and laser precision, he
always delivers beyond expectations.
</blockquote>
<div class="quote-byline">Martin Collsiöö, UX Lead, TUI</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
TUI, the world largest leisure travel company, handed us the glorious task to design the Nordic web and email presence for 3 years.
We also helped build the UX team that during this period was appointed ‘Center of Excellence’ on the TUI global level.
</p>
</div>
<div id="w-node-342157ea9407-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">UI</div>
<div class="tag">UX</div>
<div class="tag">Art Direction</div>
<div class="tag">Design System</div>
<div class="tag">Web</div>
<div class="tag">Email / CRM</div>
<div class="tag">Voice Interface Lab</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-tui-1.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-tui-2.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-tui-3a.png"></lazy-img>
<lazy-img name="p-tui-3b.png"></lazy-img>
<lazy-img name="p-tui-3c.png"></lazy-img>
<lazy-img name="p-tui-3d.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-tui-4a.png"></lazy-img>
<lazy-img name="p-tui-4b.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Cocktail Cruise</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="2a141d78-82b3-0fc2-dbd8-88aa31a3d6e8" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="2a141d78-82b3-0fc2-dbd8-88aa31a3d6eb" class="w-layout-grid project-about-section">
<div id="w-node-88aa31a3d6ec-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
⭐️⭐️⭐️⭐️⭐️Very underrated game! There are not many apps like this one on the App Store 👌. This game was definitely very
ahead of its time. The concept, and design goes hand in hand with its awesome sound tracks as well.
</blockquote>
<div class="quote-byline">Oreoninja22, Random customer, Apple App Store</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Capture the flag in a vibrant neon arcade 80’s atmosphere. An inhouse game available for iOS devices were an iPad functions as the
game board but each ship is controlled by iPhones. Up to 8 players for total mayhem.
</p>
</div>
<div id="w-node-88aa31a3d6f8-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-cocktailcruise-1.png"></lazy-img>
<lazy-img name="p-cocktailcruise-2.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-cocktailcruise-3a.png"></lazy-img>
<lazy-img name="p-cocktailcruise-3b.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Com Hem</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="85203fd8-ee9d-200c-26c3-29909e0d7e42" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="85203fd8-ee9d-200c-26c3-29909e0d7e45" class="w-layout-grid project-about-section">
<div id="w-node-29909e0d7e46-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Kristofer is always full of creative ideas and positive energy. He creates awesome designs and user flows, seeks and listen to
feedback. He's really good to sell and explain his ideas and show how they fit in the bigger picture.
</blockquote>
<div class="quote-byline">Kristina Trossmo, Agile Coach, Com Hem</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Long story short - During two years Kristofer pretty much redesigned every page of Com Hem’s web. It was an epic journey.
</p>
</div>
<div id="w-node-29909e0d7e52-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Art Direction</div>
<div class="tag">UI</div>
<div class="tag">UX</div>
<div class="tag">Design System</div>
<div class="tag">Web</div>
<div class="tag">Logo & Rebranding</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-comhem-1.jpg"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _2col">
<lazy-img name="p-comhem-2a.png"></lazy-img>
<lazy-img name="p-comhem-2b.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-comhem-3a.png" class="hide-image-small"></lazy-img>
<lazy-img name="p-comhem-3b.png"></lazy-img>
<lazy-img name="p-comhem-3c.png"></lazy-img>
<lazy-img name="p-comhem-3d.png" class="hide-image-small"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title"><strong>Toca Boca</strong></h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="47502ef1-2e86-8c52-30e2-ad5b872df8c6" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="47502ef1-2e86-8c52-30e2-ad5b872df8c9" class="w-layout-grid project-about-section">
<div class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Working with Fille means that you will get an dedicated team player who brings energy to the project! Fille’s capabilities as a
developer is like a swiss army knife, I have worked with him in various game and native mobile projects over 4 years, with
everything from specification to bug fixing. I can recommend him for any mobile development team, where I believe he will be a
great asset!”
</blockquote>
<div class="quote-byline">KLAS HAMMARSTRÖM, PROJECT MANAGER, TOCA BOCA</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Toca Boca makes digital toys that have been downloaded over 150 million times in more than 200 countries. Fille helped develop
multiple products from the Toca Life series, their most popular product so far.
</p>
</div>
<div id="w-node-ad5b872df8cf-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our rolE</h3>
<div class="tags-wrapper">
<div class="tag">Development</div>
<div class="tag">iOS</div>
<div class="tag">Android</div>
<div class="tag">Unity</div>
<div class="tag">Objective-C</div>
<div class="tag">C#</div>
<div class="tag">C</div>
<div class="tag">Node</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid thirdsright fixed">
<lazy-img name="p-tocaboca-1a.png"></lazy-img>
<lazy-img name="p-tocaboca-1b.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _3col toca">
<lazy-img name="p-tocaboca-2a.png" class="toca-icon"></lazy-img>
<lazy-img name="p-tocaboca-2b.png" class="toca-icon"></lazy-img>
<lazy-img name="p-tocaboca-2c.png" class="toca-icon"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-tocaboca-3.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title"><strong>Holy Hand Grenade</strong></h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="48f49937-86c7-881e-2223-11f9144d0042" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="48f49937-86c7-881e-2223-11f9144d0045" class="w-layout-grid project-about-section">
<div id="w-node-11f9144d0046-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
The Holy Hand Grenade distils competitive gaming into a short and sharp single game experience.
</blockquote>
<div class="quote-byline">Chris Priestman, Pocket Gamer</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Let there be light, and there was light. Put your reactions to the test against your friends in last man standing tournaments that
runs once a day.
</p>
</div>
<div id="w-node-11f9144d0052-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _3col">
<lazy-img name="p-holy-1a.png"></lazy-img>
<lazy-img name="p-holy-1b.png"></lazy-img>
<lazy-img name="p-holy-1c.png"></lazy-img>
<lazy-img name="p-holy-2a.png"></lazy-img>
<lazy-img name="p-holy-2b.png" class="hide-image"></lazy-img>
<lazy-img name="p-holy-2c.png" class="hide-image"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _6col">
<lazy-img name="p-holy-3a.png"></lazy-img>
<lazy-img name="p-holy-3b.png"></lazy-img>
<lazy-img name="p-holy-3c.png"></lazy-img>
<lazy-img name="p-holy-3d.png"></lazy-img>
<lazy-img name="p-holy-3e.png"></lazy-img>
<lazy-img name="p-holy-3f.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Nordea</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="74d0f95a-1198-abea-1830-d60bcd12dc07" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="74d0f95a-1198-abea-1830-d60bcd12dc0a" class="w-layout-grid project-about-section">
<div id="w-node-d60bcd12dc0b-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
It has been an excellent decision to work with IMGNRY as they have continuously delivered high quality on time. It’s a pleasure to
work with Kristofer and Fille - they always see solutions, not problems.
</blockquote>
<div class="quote-byline">
Rita Mansourati, Product Marketing Manager, Nordea Markets
</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
An iOS app that provides portfolio functionality, live updated course reviews, news and information about Nordea's success
product ’Räntebevis’.
</p>
</div>
<div id="w-node-d60bcd12dc17-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our rolE</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _3col">
<lazy-img name="p-nordea-1a.png"></lazy-img>
<lazy-img name="p-nordea-1b.png"></lazy-img>
<lazy-img name="p-nordea-1c.png" class="hide-image"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid">
<lazy-img name="p-nordea-2a.png"></lazy-img>
<lazy-img name="p-nordea-2b.png"></lazy-img>
<lazy-img name="p-nordea-2c.png"></lazy-img>
<lazy-img name="p-nordea-2d.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Most Wanted</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="c749924a-4fb5-b5a3-8583-79e1a0199a53" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="c749924a-4fb5-b5a3-8583-79e1a0199a56" class="w-layout-grid project-about-section">
<div id="w-node-79e1a0199a57-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
This game won’t let me sleep anymore. Being hunted constantly. We have to shut the shit down!
</blockquote>
<div class="quote-byline">Fille, Developer, IMGNRY</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
This iOS game and its users never slept due to its 24/7 nature. Track down friends, earn cash and climb the bank ranks and at the
same time stay on the run to gain the number one spot as the most wanted.
</p>
</div>
<div id="w-node-79e1a0199a63-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our rolE</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid mostwanted">
<lazy-img name="p-mostwanted-1a.png"></lazy-img>
<lazy-img name="p-mostwanted-1b.png"></lazy-img>
<lazy-img name="p-mostwanted-1c.png"></lazy-img>
<lazy-img name="p-mostwanted-1d.png" class="hide-image"></lazy-img>
<lazy-img name="p-mostwanted-2a.png"></lazy-img>
<lazy-img name="p-mostwanted-2b.png"></lazy-img>
<lazy-img name="p-mostwanted-2c.png"></lazy-img>
<lazy-img name="p-mostwanted-2d.png" class="hide-image"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title"><strong>Wars</strong></h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="4ac542d6-8f37-2f2c-9435-4dda8e7da794" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="4ac542d6-8f37-2f2c-9435-4dda8e7da797" class="w-layout-grid project-about-section">
<div class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
Compelling game, the balance of units with different 'tick rates' and abilities provides interesting choices.The total
play area was big enough to provide an interesting scale and time to respond.
</blockquote>
<div class="quote-byline">Deep Bluezen, Beta Tester</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Massive multiplayer with a combination of real-time and turn-based logics. This game will eventually be epic. Aimed for release when
we’re old and retired.
</p>
</div>
<div id="w-node-4dda8e7da7a4-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our rolE</h3>
<div class="tags-wrapper">
<div class="tag green">Everything</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid thirdsright">
<lazy-img name="p-wars-1b.png" class="force100"></lazy-img>
<lazy-img name="p-wars-1a.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid thirdsleft">
<lazy-img name="p-wars-2b.png"></lazy-img>
<lazy-img name="p-wars-2a.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title"><strong>Samsung</strong></h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="3a0b7631-8fb2-f623-e287-baa156c124ae" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="3a0b7631-8fb2-f623-e287-baa156c124b1" class="w-layout-grid project-about-section">
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
We got the opportunity to deliver a custom e-commerce storefront for Samsung. We also developed the connected CMS with functions for
advanced grid-style layouts. The agency Great Works ran the project.
</p>
</div>
<div id="w-node-baa156c124be-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Development</div>
<div class="tag">.Net</div>
<div class="tag">SQL</div>
<div class="tag">HTML/CSS</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _1col">
<lazy-img name="p-samsung-1.png"></lazy-img>
</div>
<div class="w-layout-grid gallery-grid _3col">
<lazy-img name="p-samsung-2a.png"></lazy-img>
<lazy-img name="p-samsung-2b.png"></lazy-img>
<lazy-img name="p-samsung-2c.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Systembolaget</h2>
<div class="project-title-line"></div>
</div>
<div class="about-wrapper" data-trigger>
<a data-w-id="157f51e7-df97-80b0-f08e-fce6a071cfd9" href="#" class="button-about-project w-inline-block">
<div>DETAILS</div>
</a>
<div data-w-id="157f51e7-df97-80b0-f08e-fce6a071cfdc" class="w-layout-grid project-about-section">
<div id="w-node-fce6a071cfdd-aa056f6f" class="quote-wrapper">
<img src="images/quote.svg" alt="" class="quote-character" />
<div class="quote-text-wrapper">
<blockquote class="quote-text">
I have had the pleasure of working with Fille and his colleagues at IMGNRY in several projects, as subcontractors to Mobiento. I
am impressed with the passion they put in and the quality they deliver. Fille is a real team player, and a great asset to any
team.
</blockquote>
<div class="quote-byline">Klas Lundgren, Project Tech Lead, Mobiento</div>
</div>
</div>
<div class="summary-wrapper">
<h3 class="everything">Project</h3>
<p class="project-paragraph">
Contracted by Mobiento to develop Systembolagets mobile app for searching, favorizing and rating their vast selection of beverages.
It became the number #1 app in the App Store in the food category in Sweden.
</p>
</div>
<div id="w-node-fce6a071cfe9-aa056f6f" class="summary-wrapper">
<h3 class="everything">Our role</h3>
<div class="tags-wrapper">
<div class="tag">Development</div>
<div class="tag">iOS</div>
<div class="tag">Objective-C</div>
<div class="tag">Swift</div>
</div>
</div>
</div>
</div>
<div class="w-layout-grid gallery-grid _3col">
<lazy-img name="p-systembolaget-1a.png"></lazy-img>
<lazy-img name="p-systembolaget-1b.png"></lazy-img>
<lazy-img name="p-systembolaget-1c.png" class="hide-image"></lazy-img>
<lazy-img name="p-systembolaget-2a.png" class="hide-image"></lazy-img>
<lazy-img name="p-systembolaget-2b.png"></lazy-img>
<lazy-img name="p-systembolaget-2c.png"></lazy-img>
</div>
</div>
<div class="project">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Logos</h2>
<div class="project-title-line"></div>
</div>
<div class="w-layout-grid gallery-grid logos">
<lazy-img
v-for="name in [
'1a-comhem',
'1b-picular',
'1c-uncorkit',
'1d-indiegamedungeon',
'2a-pieceoffantastic',
'2b-aisweden',
'2c-mostwanted',
'2d-rainbowrockin',
'3a-cmresurs',
'3b-holy',
'3c-forceprotection',
'3d-babyspot',
'4a-golddroidrockers',
'4b-imgnry',
'4c-kelb',
'4d-cocktailcruise',
'5a-flavors',
'5b-wars',
'5c-cheesemaze',
'5d-guldvarg',
]"
:name="`p-logo-${name}.png`"
:key="name"
></lazy-img>
</div>
</div>
<div class="project founders">
<div class="w-layout-grid project-title-row" data-trigger>
<div class="project-title-line"></div>
<h2 class="project-title">Founders</h2>
<div class="project-title-line"></div>
</div>
<h1 data-trigger>
Kristofer and Fille, who first met in school, began collaborating on various eccentric hobby projects in the 90s. They eventually
established IMGNRY in 2012, and are currently based in Stockholm, Sweden, where they live and work.
</h1>
<div class="profiles">
<div class="profile">
<lazy-img name="photo-kristofer.png" class="photo"></lazy-img>
<h2 data-trigger>Kristofer</h2>
<div class="title" data-trigger>Designer</div>
<div class="description" data-trigger>
Having developed a passion for creating digital content since acquiring his first Amiga in the 80s, he has become a versatile
full-stack designer, skilled in various design-related tasks. Today, his most significant contribution lies in his expertise in
constructing scalable design systems.
</div>
</div>
<div class="profile">
<lazy-img name="photo-fille.png" class="photo"></lazy-img>
<h2 data-trigger>Fille</h2>
<div class="title" data-trigger>Developer</div>
<div class="description" data-trigger>
With 25 years of experience as a full-stack developer, he is a technological generalist who enjoys being involved in every layer of
the stack, from the database to the user interface. He has a passion for learning and experimenting, leveraging tools like Co-Pilot
and GPT-4 to boost his developer experience and performance.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
import { Prop } from 'vue-property-decorator'
import LazyImg from './LazyImage.vue'
import Spinner from './Spinner.vue'
import ScrollTrigger from '@terwanerik/scrolltrigger'
@Component({
components: { LazyImg, Spinner },
})
export default class App extends Vue {
async mounted() {
await this.$loadScript('/js/webflow.js')
const trigger = new ScrollTrigger()
trigger.add('[data-trigger]')
}
}
</script>
<style lang="scss" scoped>
.visible,
.invisible {
opacity: 0;
transition: all 1s ease 0.1s;
transform: scale(0.9) translateY(50px);
}
.visible {
opacity: 1;
transform: translateY(0);
}
.lazyloaded + .spinner {
opacity: 0;
}
.gallery-image {
background: rgb(19, 19, 19);
}
.founders {
h1 {
margin: 0 auto;
max-width: 700px;
@media (max-width: 767px) {
font-size: 24px;
text-align: left;
}
}
.profiles {
display: flex;
gap: 80px;
@media (max-width: 767px) {
flex-direction: column;
gap: 40px;
}
.profile {
flex: 1;
// padding: 0 40px;
margin: 40px 0;
}
.photo {
flex: 1;
margin-bottom: 10px;
}
h2 {
font-size: 48px;
font-weight: 900;
color: #fff;
line-height: 1.3;
margin-bottom: 0;
}
.title {
font-size: 18px;
font-family: 'Breakers Light', sans-serif;
color: #ffd25f;
line-height: 1;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 20px;
}
.description {
font-size: 24px;
font-family: 'Breakers Light', sans-serif;
color: #fff;
line-height: 1.5;
@media (max-width: 767px) {
font-size: 20px;
}
}
}
}
</style>