-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.mobirise
1100 lines (1100 loc) · 47.3 KB
/
project.mobirise
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
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"settings": {
"name": "Kai Nyame: Contract Work Samples",
"currentPage": "index.html",
"theme": {
"name": "mobirise3",
"title": "Mobirise 3",
"styling": {
"primaryColor": "#2969b0",
"secondaryColor": "#bfcecb",
"successColor": "#90a878",
"infoColor": "#7e9b9f",
"warningColor": "#f3c649",
"dangerColor": "#f28281",
"titleFont": "Montserrat",
"subtitleFont": "Montserrat",
"textFont": "Montserrat",
"isRoundedButtons": false,
"isAnimatedOnScroll": true,
"isScrollToTopButton": true,
"isRtl": false
}
},
"favicon": "",
"noImageResize": "",
"google-analytics": "",
"siteUrl": "undefined",
"versionFirst": "3.12.1",
"uniqCompNum": 31,
"versionPublish": "3.12.1"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "",
"meta_descr": "",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"_inherit": "menu",
"_tags": [
"Theme"
],
"_styles": {
".hide-buttons .nav-btn": {
"display": "none !important"
},
".navbar-caption": {
"color": "#ffffff"
},
".navbar-toggler": {
"color": "#000000"
},
".close-icon::before, .close-icon::after": {
"background-color": "#000000"
},
".link, .dropdown-item": {
"color": "#000000"
},
".link": {
"font-size": "0.75rem"
},
".dropdown-item, .nav-dropdown-sm .link": {
"font-size": "0.812rem"
},
".link:hover, .dropdown-item:hover, .link:focus, .dropdown-item:focus": {
"color": "@primaryColor"
},
".link[aria-expanded=\"true\"], .dropdown-menu": {
"background": "#d6d6d6"
},
".nav-dropdown-sm .link:focus, .nav-dropdown-sm .link:hover, .nav-dropdown-sm .dropdown-item:focus, .nav-dropdown-sm .dropdown-item:hover": {
"background": "#e7e7e7!important"
},
".navbar, .nav-dropdown-sm, .nav-dropdown-sm .link[aria-expanded=\"true\"], .nav-dropdown-sm .dropdown-menu": {
"background": "#efefef"
},
".bg-color.transparent .link": {
"color": "#000000",
"transition": "none"
},
".bg-color.transparent.opened .link": {
"transition": "color .2s ease-in-out"
},
".bg-color.transparent.opened .link:hover, .bg-color.transparent.opened .link:focus": {
"color": "@primaryColor"
},
".link[aria-expanded=\"true\"], .dropdown-item[aria-expanded=\"true\"]": {
"color": "#c0a375!important"
}
},
"_name": "ext.menu",
"_anchor": "ext_menu-4",
"_params": {
"bgColor": "#efefef",
"fontSize": 0.75,
"fontName": {},
"fontColor": "#000000",
"fontHoverColor": "@primaryColor",
"transparent": false,
"sticky": true,
"logo": true,
"showBrand": true,
"collapsed": true,
"hideButtons": true
},
"logo": {
"image": {
"active": true,
"src": "@PROJECT_PATH@/assets/images/cute-kai-3-1-128x128.png",
"height": 128,
"alt": "Mobirise",
"link": "",
"title": "",
"linkInNewWindow": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-menu",
"link": "https://mobirise.com",
"size": 0
}
},
"brand": "<a class=\"navbar-caption text-black\" data-app-btn=\"true\" data-app-selector=\".navbar-caption\" href=\"https://mobirise.com\" data-app-placeholder=\"Type Brand Name\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove,mbrColor\">Kai Nyame: Contract Work Samples</a>",
"items": "<li class=\"nav-item\"><a data-app-btn=\"true\" class=\"nav-link link\" href=\"#top\">HOME</a></li><li class=\"nav-item nav-btn\"><a data-app-btn=\"true\" data-button=\"\" data-app-selector=\".btn\" class=\"nav-link btn btn-white btn-white-outline\" href=\"https://mobirise.com/\">DOWNLOAD</a></li><li class=\"nav-item nav-btn\"><a data-app-btn=\"true\" data-button=\"\" data-app-selector=\".btn\" class=\"nav-link btn btn-primary\" href=\"https://mobirise.com/\">BUY</a></li>"
},
{
"_styles": {
".mbr-section-title, p": {
"color": "#fff"
}
},
"_tags": [
"Theme"
],
"_name": "msg-box8",
"_anchor": "msg-box8-3",
"_params": {
"paddingTop": "5",
"paddingBottom": "2",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/desert.jpg",
"bgColor": "#070707",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": true,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"showTitle": true,
"showText": true,
"showButton": false
},
"title": "Contract Work Samples",
"text": "<p><b>Kai Nyame Drayton-Yee</b></p><p><b>Contact: <a href=\"mailto:[email protected]\" target=\"_blank\">[email protected]</a></b></p>",
"button": "<a data-app-btn=\"true\" class=\"btn btn-secondary\" href=\"https://mobirise.com\">SEE ALL TEMPLATES</a>"
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-5",
"_params": {
"imageSize": "56",
"paddingTop": "2",
"paddingBottom": "2",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": true
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/13902539-10207071552651981-8855999660997344291-n-1400x933.jpg",
"link": "",
"alt": "professional headshot photo of Kai Nyame, wearing a dark green turtleneck and a black blazer jacket on a white background, Kai looks directly into the camera",
"title": "Kai Nyame Headshot",
"linkInNewWindow": false
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "My name is Kai and I am a Game Designer and Digital Content Creator. With over 6 years of experience as an independent contractor, I have shipped numerous games since I started developing them in 2013, and have worked with clients and their brands to establish online content such as apps, websites and interactive experiences.<br><br>I have worked both as an independent contractor within larger teams, and as a solo developer. Throughout all projects I greatly value communication with the client as a key ingredient to creating meaningful content. I often use my skills to help visualize internal communication with my clients in order to communicate about my design process.<br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://twitter.com/nyamedev\" data-toolbar=\"-mbrBtnMove\" target=\"_blank\">TWITTER</a> <a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"mailto:[email protected]\" data-toolbar=\"-mbrBtnMove\" target=\"_blank\">EMAIL</a> <a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://linkedin.com/in/kainyame\" data-toolbar=\"-mbrBtnMove\" target=\"_blank\">LINKEDIN</a>",
"_styles": {
"P": {
"color": "#efefef",
"font-size": "13px"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "features3",
"_anchor": "features3-2",
"_params": {
"paddingTop": 2,
"paddingBottom": 2,
"bgImageRadio": false,
"parallax": true,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"columns": "3",
"showImages": true,
"showTitles": true,
"showSubtitles": false,
"ShowTexts": true,
"showButtons": true
},
"media1": {
"image": {
"src": "@PROJECT_PATH@/assets/images/uxuiconsult-600x601.png",
"class": "card-img-top",
"width": 600,
"active": true,
"link": "index.html#msg-box8-7",
"alt": "Icon of mobile phone and code, showing user experience through symbols like gears, tools and settings icons, UX/UI Consultation Icon",
"title": "UX/UI Consultation",
"linkInNewWindow": false
}
},
"title1": "UX/UI Consultation",
"subtitle1": "Bootstrap 4 has been noted",
"caption1": "I design engaging visuals and experiences for a variety of mediums. From wireframes to technical documentation, my skill set allows me to work with teams both big and small. ",
"button1": "<a data-app-btn=\"true\" href=\"index.html#msg-box8-7\" class=\"btn btn-primary\" data-toolbar=\"-mbrBtnMove\">LEARN MORE</a>",
"media2": {
"image": {
"src": "@PROJECT_PATH@/assets/images/webdesign-600x601.png",
"class": "card-img-top",
"width": 600,
"active": true,
"link": "index.html#msg-box8-8",
"alt": "icon symbolizing web design, with icons of a laptop, a mouse cursor and a gear icon, Website Design",
"title": "Website Design",
"linkInNewWindow": false
}
},
"title2": "Website Design",
"subtitle2": "One of Bootstrap 4's big points",
"caption2": "I work closely with clients to provide an intuitive browsing experience for their customers’ needs. I pay special attention to create web-content that is clean, easy to read, and ready for the every-day consumer.",
"button2": "<a data-app-btn=\"true\" href=\"index.html#msg-box8-8\" class=\"btn btn-primary\" data-toolbar=\"-mbrBtnMove\">LEARN MORE</a>",
"media3": {
"image": {
"src": "@PROJECT_PATH@/assets/images/gamesandapps-600x601.png",
"class": "card-img-top",
"width": 600,
"active": true,
"link": "index.html#msg-box8-9",
"alt": "icon of a video game controller, Games & Apps",
"title": "Games & Apps",
"linkInNewWindow": false
}
},
"title3": "Games & Apps",
"subtitle3": "Google has a highly exhaustive list of fonts",
"caption3": "With my background in game design, I focus on creating unique and captivating content for a range of audiences. I enjoy designing gameplay that engages users and keeps them coming back for more",
"button3": "<a data-app-btn=\"true\" href=\"index.html#msg-box8-9\" class=\"btn btn-primary\" data-toolbar=\"-mbrBtnMove\">LEARN MORE</a>",
"media4": {
"image": {
"src": "@THEME_PATH@/components/_images/gallery/code-man.jpg",
"class": "card-img-top",
"width": 600,
"active": true
}
},
"title4": "Unlimited Sites",
"subtitle4": "Mobirise gives you the freedom to develop",
"caption4": "Mobirise gives you the freedom to develop as many websites as you like given the fact that it is a desktop app.",
"button4": "<a data-app-btn=\"true\" href=\"https://mobirise.com\" class=\"btn btn-primary\">MORE</a>",
"media5": {
"image": {
"src": "@THEME_PATH@/components/_images/gallery/windows-books.jpg",
"class": "card-img-top",
"width": 600,
"active": true
}
},
"title5": "Trendy Website Blocks",
"subtitle5": "Choose from the large selection of blocks",
"caption5": "Choose from the large selection of latest pre-made blocks - jumbotrons, hero images, parallax scrolling, video backgrounds, hamburger menu, sticky header and more.",
"button5": "<a data-app-btn=\"true\" href=\"https://mobirise.com\" class=\"btn btn-primary\">MORE</a>",
"media6": {
"image": {
"src": "@THEME_PATH@/components/_images/gallery/room-laptop.jpg",
"class": "card-img-top",
"width": 600,
"active": true
}
},
"title6": "Host Anywhere",
"subtitle6": "Don't limit yourself to just one platform",
"caption6": "Publish your website to a local drive, FTP or host on Amazon S3, Google Drive, Github. Don't limit yourself to just one platform or service provider.",
"button6": "<a data-app-btn=\"true\" href=\"https://mobirise.com\" class=\"btn btn-primary\">MORE</a>",
"_styles": {
"P": {
"color": "#efefef",
"text-align": "left",
"font-size": "12px"
},
"H4": {
"color": "#efefef"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-u",
"_params": {
"imageSize": "43",
"paddingTop": "1",
"paddingBottom": "2",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": false,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/kai-makeschool-1400x848.jpg",
"link": "",
"alt": "Image of Kai working with students, 3 people including kai surrounding a desk looking down at a laptop",
"title": "Working with Clients and Students",
"linkInNewWindow": false
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": " I have worked with a wide variety of clients, from professionals creating prototypes for funding, to families interested in designing a board game together. With all of my clients, I focus on maintaining consistent communication in order to truly understand the experience goals of the project and the goals of the clients.<br><br>Because the scope of projects can vary widely, I start all contracts with an introductory meeting that clarifies the short-term and long-term goals and how I can best contribute to the project. Operating with the knowledge that if the overarching aspirations of a project and the experience goals are clear, then I can create exciting content that will help the client take their project to the next level.<br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"text-align": "left",
"color": "#efefef",
"font-size": "12px"
}
}
},
{
"_styles": {
".mbr-section-title, p": {
"color": "#fff"
}
},
"_tags": [
"Theme"
],
"_name": "msg-box8",
"_anchor": "msg-box8-7",
"_params": {
"paddingTop": "2",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/desert.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": true,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"showTitle": true,
"showText": false,
"showButton": false
},
"title": "UX/UI Consultation",
"text": "<p>Article header with background image and parallax effect.</p>",
"button": "<a data-app-btn=\"true\" class=\"btn btn-secondary\" href=\"https://mobirise.com\">SEE ALL TEMPLATES</a>"
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-l",
"_params": {
"imageSize": "37",
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/unnamed.gif",
"link": "https://prezi.com/view/Vcd7oZTxYW3N0jgf2arL/",
"alt": "animated UI gif from a prezi presentation, showing UI flow and onboarding process for a mobile game, Sample Pitch Document",
"title": "Sample Pitch Document",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "For User Experience, User Interface and Gamification contracts, I usually start with a workshop session on User Stories or Persona Profiles. If the client already has these prepared, I can proceed directly into wire-framing. I use a variety of tools such as Adobe XD and Balsamiq, in some cases I will learn additional prototyping tools specifically for a client's project.<br><br>I am often asked to create one of two documents; an external facing \"Pitch\" document, or an internal \"Technical Specifications\" document. I have experience writing/designing for both public/funding facing audiences, as well as internal development teams/engineers. It is very important to specify the type of audience the document is being designed for, so that I can convey the content in the way that will be best received by the recipients. <br><br><a href=\"https://prezi.com/view/Vcd7oZTxYW3N0jgf2arL/\" target=\"_blank\">View a Sample Pitch Document</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"text-align": "left",
"font-size": "12px",
"color": "#efefef"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-m",
"_params": {
"imageSize": 50,
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": false,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/umami-ui-1400x805.png",
"link": "https://docs.google.com/file/d/1FGlxCa079cAtpm4hHM8UpKkgwOl-AG7M2VUAhqYXh5o/edit",
"alt": "UI mock-up image of a resturant builder mobile title, details ui placement and movement, Sample Technical Specifications",
"title": "Sample Technical Specifications",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "The level of detail within wireframes & documents vary and will be based both on the amount of previous documentation and scope of the contract. If there are specific sections that need more detail than others, additional sub-documents can be created. These documents can further address key features, or other notable design elements.<br><br>If a client comes in with no prior documentation, I have created Game Design Documents (GDDs), or more general documentation along with the requested wireframes, and I strive to make each project clearer and more defined, so that future development has less complications.<br><br><a href=\"https://docs.google.com/file/d/1FGlxCa079cAtpm4hHM8UpKkgwOl-AG7M2VUAhqYXh5o/edit\" target=\"_blank\">View Sample Technical Specifications</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"color": "#efefef",
"font-size": "12px",
"text-align": "left"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-o",
"_params": {
"imageSize": "31",
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/umamiui2-1400x1820.png",
"link": "https://drive.google.com/file/d/1280X_fVcj_37UfGEmcgpmpdga9gwdD1O/view?usp=sharing",
"alt": "PDF of a game design document for a sushi-themed mobile match-3 game, a gameplay mockum image is displayed next to text detailing the structure of the game's mechanics and graphics, image leads to a full GDD PDF ",
"title": "Sample Game Design Document",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "All materials and documents can be delivered via Google Drive or via Email as a .zip file. Some clients have specific file formats or presentation styles that are not conducive to .zip files. In these cases, a document will be sent with the relevant links to the presentations. All specialized presentation or format requests should be noted at the beginning of the design process.<br><br>All delivered content can be sent back for up to two revisions per document. If a different policy is needed, my timeline & revisions policy can be discussed during the initial phase of the contract. All document requirements, as well as a list of deliverables need to be sent at the beginning of the contract. If additional assets, documentation or materials are needed during a development phase, the list can be amended. However, the overall development timeline may need to be revised if additional documents have been added.<br><br>If requested, previews of in-progress content can be sent so that revisions/additions can be started earlier in the development cycle. If mid-development check-ins are needed, the client will need to make that clear early in the development cycle so that time can be set aside to review these in-process documents. In these cases, the revision policy will still allow for two additional meetings per sprint (assuming two week sprint cycles). <br><br><a href=\"https://drive.google.com/file/d/1280X_fVcj_37UfGEmcgpmpdga9gwdD1O/view?usp=sharing\" target=\"_blank\">View a Sample Game Design Document</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"color": "#efefef",
"font-size": "12px",
"text-align": "left"
}
}
},
{
"_styles": {
".mbr-section-title, p": {
"color": "#fff"
}
},
"_tags": [
"Theme"
],
"_name": "msg-box8",
"_anchor": "msg-box8-8",
"_params": {
"paddingTop": "2",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/desert.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": true,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"showTitle": true,
"showText": false,
"showButton": false
},
"title": "Website Design",
"text": "<p>Article header with background image and parallax effect.</p>",
"button": "<a data-app-btn=\"true\" class=\"btn btn-secondary\" href=\"https://mobirise.com\">SEE ALL TEMPLATES</a>"
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-p",
"_params": {
"imageSize": "38",
"paddingTop": "1",
"paddingBottom": "3",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/ezgif.com-crop-3.gif",
"link": "https://gameheadsoakland.org",
"alt": "gif of the colorful Gameheads Oakland website, scrolls through the hompe page, with dynamic webpage animations and bright group pictures of the high school students in the program",
"title": "Gameheads Oakland Website",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "I specialize in creating static web pages that are intuitive and easy to navigate. All websites designed are cross-platform compatible, which is essential for engaging both users who use tables and phones to browse the internet. Additionally, I am able to work with back-end developers and server-side integration for more custom web-browsing experiences.<br><br>As with most of my projects, I can easily onboard to a current development team, or can remain entirely external while making the requested documentation. In the past, I have occasionally brought on an additional engineer to the contract in order to implement more complex systems. If a client has no previous infrastructure, or development team, I will often suggest this course of action. <br><br><a href=\"https://gameheadsoakland.org\" target=\"_blank\">View a Sample Website</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"color": "#efefef",
"font-size": "12px"
}
}
},
{
"_styles": {
".mbr-section-title, p": {
"color": "#fff"
}
},
"_tags": [
"Theme"
],
"_name": "msg-box8",
"_anchor": "msg-box8-9",
"_params": {
"paddingTop": "2",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/desert.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": true,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"showTitle": true,
"showText": false,
"showButton": false
},
"title": "Games & Apps",
"text": "<p>Article header with background image and parallax effect.</p>",
"button": "<a data-app-btn=\"true\" class=\"btn btn-secondary\" href=\"https://mobirise.com\">SEE ALL TEMPLATES</a>"
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-q",
"_params": {
"imageSize": 50,
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/ezgif.com-crop-2.gif",
"link": "https://cryptofengame.github.io",
"alt": "gif of the idle mobile game \"Crypt of En\" developed by Kai, 2D creatures are shaking as they take damage on a dark background, the UI is fantasy themed, and slides open to reveal settings and access to a hero recruitement tab",
"title": "Crypt of En",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "I am a part of the USC Games BA class of 2021, and minoring in East Asian Languages and Cultures (Japanese) at the University of Southern California. Coming from the #1 Game Development program in North America (Princeton Review),, I have had experience working with some of the best teams that games academia can offer. I have taken classes with professionals who have worked on titles such as Uncharted, League of Legends, and more. I have experience working in a multitude of game engines including Unity 3D, Unreal Engine, Game Maker, Twine and RenPy.<br><br><a href=\"https://cryptofengame.github.io\" target=\"_blank\">View a Mobile Project</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"font-size": "12px",
"color": "#ffffff"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-r",
"_params": {
"imageSize": 50,
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/ezgif.com-crop-1.gif",
"link": "http://persuasiongamestudio.com",
"alt": "gif of serpent Showdown, a console game directed by Kai. Two cartoon snakes dash around a 3D arena, throwing paper wads at eachother and fencing with colorful crayon-swords",
"title": "Serpent Showdown, Console Game",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "I have shipped PC, mobile and console titles from student projects, as well as through contracts with professionals in the industry. I have performed multiple roles in the game development pipeline including; level design, 3D modeling/animation, production/project management, game directing and more. I have led teams of up to 20 individuals, and have participated on teams of up to 35. <br><br>For App development, I have participated in the MakeSchool summer bootcamp, and have Unity, Swift and wireframing skill sets. I have filled roles in gamification, UX/UI and user research. I have helped companies ideate on their vision, as well as implement their concepts into robust prototypes for events, demos and pitches. Apps that I have worked on have gone on to be featured on NBC's Discovery and Tanoshi Kids platforms. <br><br><br><a href=\"http://persuasiongamestudio.com\" target=\"_blank\">View a Console Project</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"color": "#efefef",
"font-size": "12px"
}
}
},
{
"_styles": {
".mbr-section-title, p": {
"color": "#fff"
}
},
"_tags": [
"Theme"
],
"_name": "msg-box8",
"_anchor": "msg-box8-g",
"_params": {
"paddingTop": "2",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/desert.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": true,
"overlayOpacity": 0.5,
"overlayColor": "#222",
"showTitle": true,
"showText": true,
"showButton": false
},
"title": "Resume & Awards",
"text": "<p>For more information, please contact: <a href=\"mailto:[email protected]\" target=\"_blank\">[email protected]</a> </p>",
"button": "<a data-app-btn=\"true\" class=\"btn btn-secondary\" href=\"https://mobirise.com\">SEE ALL TEMPLATES</a>"
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-s",
"_params": {
"imageSize": "32",
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": false,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/kai-may-resume-1400x1819.png",
"link": "https://drive.google.com/file/d/1-2J_eh4tKGbwgAOXwcPbdPy34sWeL3RC/view",
"alt": "screenshot of Kai's resume, will link to the full PDF if clicked ",
"title": "Kai Nyame Resume",
"linkInNewWindow": true
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false
},
"iconFont": {
"class": "mbr-iconfont mbr-iconfont-msg-box5",
"link": "",
"size": 0
}
},
"title": "SOLID COLOR INTRO WITH IMAGE",
"text": "I have worked on a very large range of projects. Much of this client work is under NDA, however, some of the notable games I have worked on are Ideal Meal, an E3/IndieCade project, as well as games like Boast, and Dragon Crash.<br><br>My contract and personal work has led me to run Kickstarters, design card games, and even road trip across the country to showcase at locations like the Santa Monica Pier, and in the San Francisco Yerba Buena Gardens. My role as a designer on both large and small projects has taught me to never underestimate the power of exploring the more unique and creative avenues. <br><br><a href=\"https://drive.google.com/file/d/1-2J_eh4tKGbwgAOXwcPbdPy34sWeL3RC/view\" target=\"_blank\">View Kai Nyame's Resume</a><br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn btn-primary\" href=\"https://mobirise.com\">MORE</a>",
"_styles": {
"P": {
"text-align": "left",
"color": "#efefef",
"font-size": "13px"
}
}
},
{
"_tags": [
"Theme"
],
"_name": "msg-box5",
"_anchor": "msg-box5-t",
"_params": {
"imageSize": 50,
"paddingTop": "1",
"paddingBottom": "1",
"parallax": true,
"bgImageRadio": false,
"bgImage": "@THEME_PATH@/components/_images/jumbotron.jpg",
"bgColor": "#1b1b1b",
"bgColorRadio": true,
"bgVideo": {
"url": "https://www.youtube.com/watch?v=uNCr7NdOJgw"
},
"bgVideoRadio": false,
"overlay": false,
"overlayOpacity": 0.5,
"overlayColor": "#fff",
"inverse": true,
"showTitle": false,
"showText": true,
"showButtons": false
},
"media": {
"image": {
"active": true,
"width": 1400,
"src": "@PROJECT_PATH@/assets/images/kai-laurels-2-1400x786.png",
"link": "",
"alt": "image with laurels and awards to Kai, Including ",
"title": "Awards and Recognition",
"linkInNewWindow": false
},
"video": {
"src": "https://www.youtube.com/embed/Tq7p44IA-1U",
"aspectratio": "16:9",
"autoplay": false,
"loop": false