-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
3331 lines (3331 loc) · 147 KB
/
Copy pathdata.json
File metadata and controls
3331 lines (3331 loc) · 147 KB
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
{
"home": {
"type": "page",
"name": "Home",
"path": "/",
"modules": ["home-1", "home-2", "home-3", "home-4", "home-5", "home--e231ee99-785a-4155-937c-796c448d477e", "home-7", "home-8", "home-9"],
"id": "home"
},
"home-1": {
"type": "image-hero-module",
"image": "home-panel1.jpg",
"height": 800,
"title": "Great businesses are\nbuilt on things people believe in.",
"link": {
"reference": "home",
"text": "Contact Us"
},
"id": "home-1"
},
"home-2": {
"id": "home-2",
"type": "text-module",
"lines": ["home-2-1"]
},
"home-2-1": {
"type": "line",
"title": "Hello",
"text": "We're Boldium, an *innovation studio*. We tap into the hearts and minds of your audience to create that “*I was made for this*” feeling.",
"size": "large",
"id": "home-2-1"
},
"home-3": {
"type": "image-body-module",
"image": "findingrover.jpg",
"height": 500,
"title": "Finding Rover",
"text": "Mobile app and digital marketing\n60,000 users year one",
"link": {
"reference": "finding-rover-cross-platform-application",
"text": "Learn more"
},
"id": "home-3"
},
"home-4": {
"type": "text-module",
"lines": ["home-4-1"],
"id": "home-4"
},
"home-4-1": {
"type": "line",
"title": "Our signature",
"text": "Uncompromising passion to discover, design, build and promote things that have a *positive impact* on people’s lives. ",
"size": "large",
"id": "home-4-1"
},
"home-4-2": {
"type": "line",
"title": "Our Passion",
"text": "foobar",
"size": "small",
"id": "home-4-2"
},
"home-5": {
"type": "image-body-module",
"image": "californiaclosets.jpg",
"height": 500,
"title": "California Closets",
"text": "Website Redesign\nLeads + 260%",
"link": {
"reference": "california-closets-website",
"text": "Learn more"
},
"id": "home-5"
},
"home-6": {
"type": "text-module",
"lines": ["home-4-2"],
"id": "home-6"
},
"home-6-1": {
"id": "home-6-1",
"type": "line",
"title": "Our Passion",
"text": "We believe that ultimately what makes brands tick is *improving people's lives*.",
"size": "large"
},
"home-6-2": {
"id": "home-6-2",
"type": "line",
"title": "",
"text": "We're passionate about creating great experiences. With a culture of incomprimising quality, we turn over every rock and optimize every detail.",
"size": "small"
},
"home-7": {
"type": "image-body-module",
"image": "cisco.jpg",
"height": 500,
"title": "Cisco",
"text": "Video and Social Media\nWinner of Communicator Award",
"link": {
"reference": "cisco-motion",
"text": "Learn more"
},
"id": "home-7"
},
"home-8": {
"id": "home-8",
"type": "text-module",
"lines": ["home-8-1", "home-8-2"]
},
"home-8-1": {
"id": "home-8-1",
"type": "line",
"title": "Our Clients",
"text": "Boldium is an awesome creative agency.",
"size": "large"
},
"home-8-2": {
"id": "home-8-2",
"type": "line",
"title": "",
"text": "*Big executive*",
"size": "small"
},
"home-9": {
"type": "image-body-module",
"image": "home_test2.png",
"height": 500,
"title": "",
"text": "",
"link": {
"reference": "",
"text": ""
},
"id": "home-9"
},
"vode-website": {
"type": "work-page",
"name": "Vode",
"subName": "website",
"image": "vode_work.png",
"modules": ["vode-website-1", "vode-website--a7cc9e15-cc35-4f4b-9d1f-13d589cd6111", "vode-website--69fc49db-922b-4b9e-8f96-ca16b190d183", "vode-website-5", "vode-website--455f646f-66d2-4c5a-8688-939f44f8d1d1", "vode-website--837793a3-1a83-4f02-9ece-3841b801f017", "vode-website--4b2e1036-f4b6-4cdf-be11-6254233164b6", "vode-website--6b83680f-2119-42c9-a712-91670dd4ede8", "vode-website--c765cb51-a690-454a-bbf1-3466f4a48614", "vode-website--43415beb-4de3-4c99-8073-86160f35b5bb", "vode-website--352c2700-3464-4b76-a57e-b6468d4e8a92", "vode-website--7c0cf481-51c5-4f86-b724-b359931289b3", "vode-website--e351f16a-2e4c-4a92-97fe-29fae2895afe", "vode-website--a00b284d-b5c5-413a-a59c-d2f91a232442"],
"id": "vode-website"
},
"vode-website-1": {
"type": "image-hero-module",
"image": "auto_landing.png",
"height": -194,
"link": {},
"id": "vode-website-1"
},
"vode-website-2-1": {
"title": "Vode",
"text": "Simply illuminated.",
"size": "large",
"id": "vode-website-2-1",
"type": "line"
},
"vode-website-2": {
"lines": ["vode-website-2-1"],
"id": "vode-website-2",
"type": "text-module"
},
"vode-website-3": {
"type": "image-body-module",
"height": "500",
"id": "vode-website-3"
},
"vode-website-4-1": {
"type": "line",
"title": "Challenge ",
"text": "Vode provides innovative lighting design for big places - think Amazon offices. With over 8,000 pre-configured systems, they can fit seamlessly into any architecutral setting.",
"size": "large",
"id": "vode-website-4-1"
},
"vode-website-4": {
"lines": ["vode-website-4-1"],
"id": "vode-website-4",
"type": "text-module"
},
"vode-website-5": {
"type": "image-body-module",
"image": "vode_diagram.png",
"height": 500,
"link": {},
"id": "vode-website-5"
},
"radiators-website": {
"type": "work-page",
"name": "Radiators",
"subName": "website",
"image": "work_page_smaller_phase.png",
"modules": ["radiators-website-1", "radiators-website-2", "radiators-website-3", "radiators-website-4", "radiators-website-5"],
"id": "radiators-website"
},
"radiators-website-1": {
"type": "image-hero-module",
"image": "Screen Shot 2015-01-02 at 9.17.30 AM.png",
"height": 500,
"link": {},
"id": "radiators-website-1"
},
"radiators-website-2-1": {
"title": "[ blank title ]",
"text": "[ blank text ]",
"size": "large",
"id": "radiators-website-2-1",
"type": "line"
},
"radiators-website-2": {
"lines": ["radiators-website-2-1"],
"id": "radiators-website-2",
"type": "text-module"
},
"radiators-website-3": {
"type": "image-body-module",
"id": "radiators-website-3"
},
"radiators-website-4-1": {
"title": "[ blank title ]",
"text": "[ blank text ]",
"size": "large",
"id": "radiators-website-4-1",
"type": "line"
},
"radiators-website-4": {
"lines": ["radiators-website-4-1"],
"id": "radiators-website-4",
"type": "text-module"
},
"radiators-website-5": {
"type": "image-body-module",
"id": "radiators-website-5"
},
"finding-rover-social-media": {
"type": "work-page",
"name": "Finding Rover",
"subName": "social media",
"image": "FDR_campaign_rk_module.png",
"modules": ["finding-rover-social-media-1", "finding-rover-social-media-2", "finding-rover-social-media-3", "finding-rover-social-media-4", "finding-rover-social-media-5", "finding-rover-social-media-6", "finding-rover-social-media--70aae526-6450-4f6e-9cf4-03242ac35c84", "finding-rover-social-media--0b3c7c68-3dc3-437d-b5c3-1d3ce2d7b43f", "finding-rover-social-media-7", "finding-rover-social-media-8", "finding-rover-social-media--21970a1e-e776-45a4-829a-2bad0136b5bc"],
"id": "finding-rover-social-media"
},
"finding-rover-social-media-1": {
"type": "image-hero-module",
"image": "FDR_campaign_hero.png",
"height": 800,
"title": "*Finding Rover:*\nCreating a movement",
"link": {},
"id": "finding-rover-social-media-1"
},
"finding-rover-social-media-2-1": {
"type": "line",
"title": "Inspiration",
"text": "Our strategy was to create a movement. Once everyone gets the app, the problem of lost dogs is solved. Period. What would inspire people to jump on board?",
"size": "small",
"id": "finding-rover-social-media-2-1"
},
"finding-rover-social-media-2-2": {
"type": "line",
"title": "Hypotheses",
"text": "We landed with 4 hypothesis. They were all good, (okay, they were amazing), but the proof would be in the pudding. Or Facebook.",
"size": "small",
"id": "finding-rover-social-media-2-2"
},
"finding-rover-social-media-2": {
"lines": ["finding-rover-social-media-2-1", "finding-rover-social-media-2-2"],
"id": "finding-rover-social-media-2",
"type": "text-module"
},
"finding-rover-social-media-3": {
"type": "image-body-module",
"image": "phone_screens_numbers.png",
"height": 500,
"link": {},
"id": "finding-rover-social-media-3"
},
"finding-rover-social-media-4-1": {
"type": "line",
"title": "Puppy contest",
"text": "We created 12 posts to test. We tested not only the tag lines, but which cute puppy people liked the best. We know, hard to play favorites.",
"size": "small",
"id": "finding-rover-social-media-4-1"
},
"finding-rover-social-media-4-2": {
"title": "Favorites",
"text": "We were able to break down which messages worked best for which demographic groups.",
"size": "small",
"id": "finding-rover-social-media-4-2",
"type": "line"
},
"finding-rover-social-media-4-3": {
"title": "Results",
"text": "Through this process, we lowered the average post price by 120%.",
"size": "large",
"id": "finding-rover-social-media-4-3",
"type": "line"
},
"finding-rover-social-media-4": {
"lines": ["finding-rover-social-media-4-1", "finding-rover-social-media-4-2", "finding-rover-social-media-4-3"],
"id": "finding-rover-social-media-4",
"type": "text-module"
},
"finding-rover-social-media-5": {
"type": "image-body-module",
"image": "FDR_guerrilla3.png",
"height": 500,
"link": {},
"id": "finding-rover-social-media-5"
},
"finding-rover-social-media-6-1": {
"type": "line",
"title": "Dogs love us",
"text": "But we knew it would take more than Facebook to energize the movement. ",
"size": "small",
"id": "finding-rover-social-media-6-1"
},
"finding-rover-social-media-6-2": {
"title": "",
"text": "Dogs love us at\nFinding Rover",
"size": "large",
"id": "finding-rover-social-media-6-2",
"type": "line"
},
"finding-rover-social-media-6-3": {
"text": "You know the \"People love us on Yelp\" stickers? We created a \"Dogs love us on Finding Rover\" campaign.",
"size": "small",
"id": "finding-rover-social-media-6-3",
"type": "line"
},
"finding-rover-social-media-6-4": {
"type": "line",
"title": "Follow the dog prints",
"text": "To get stores on board, we created a Partner Package with lots of bells and whistles: chalk dog prints on the sidewalk leading to your door, a bright orange dog bowl, brochures featuring local dog friendly business, and of course, the sticker.",
"size": "small",
"id": "finding-rover-social-media-6-4"
},
"finding-rover-social-media-6": {
"lines": ["finding-rover-social-media-6-1", "finding-rover-social-media-6-2", "finding-rover-social-media-6-3", "finding-rover-social-media-6-4"],
"id": "finding-rover-social-media-6",
"type": "text-module"
},
"finding-rover-social-media-7": {
"type": "image-body-module",
"image": "FDR_campaign_final_image.png",
"height": 500,
"text": "",
"link": {},
"id": "finding-rover-social-media-7"
},
"finding-rover-social-media-8-1": {
"title": "Results",
"text": "Thousands of furry friends protected. What could be better than that?",
"size": "large",
"id": "finding-rover-social-media-8-1",
"type": "line"
},
"finding-rover-social-media-8": {
"lines": ["finding-rover-social-media-8-1"],
"id": "finding-rover-social-media-8",
"type": "text-module"
},
"atp-mobile-application": {
"type": "work-page",
"name": "ATP",
"subName": "mobile application",
"image": "work_page_smaller_phase.png",
"modules": ["atp-mobile-application-1", "atp-mobile-application-2", "atp-mobile-application-3", "atp-mobile-application-4", "atp-mobile-application-5"],
"id": "atp-mobile-application"
},
"atp-mobile-application-1": {
"type": "image-hero-module",
"height": "656",
"image": "ATP-iPad-Application-656-01.jpg",
"id": "atp-mobile-application-1"
},
"atp-mobile-application-2-1": {
"title": "ATP",
"text": "Building a better service",
"size": "large",
"id": "atp-mobile-application-2-1",
"type": "line"
},
"atp-mobile-application-2-2": {
"text": "Praesent blandit felis dui, vitae volutpat mauris aliquam vel. Proin nibh augue, egestas vitae arcu vitae, auctor varius risus. Ut blandit sit amet arcu sed consequat.",
"size": "small",
"id": "atp-mobile-application-2-2",
"type": "line"
},
"atp-mobile-application-2": {
"lines": ["atp-mobile-application-2-1", "atp-mobile-application-2-2"],
"id": "atp-mobile-application-2",
"type": "text-module"
},
"atp-mobile-application-3": {
"type": "image-body-module",
"height": "500",
"image": "ATP-Website-500-01.jpg",
"id": "atp-mobile-application-3"
},
"atp-mobile-application-4-1": {
"type": "line",
"title": "Ut blandit sit",
"text": "Praesent blandit felis dui, vitae volutpat mauris aliquam vel. Proin nibh augue, egestas vitae arcu vitae, auctor varius. Ut blandit sit amet arcu sed consequat.",
"size": "small",
"id": "atp-mobile-application-4-1"
},
"atp-mobile-application-4": {
"lines": ["atp-mobile-application-4-1"],
"id": "atp-mobile-application-4",
"type": "text-module"
},
"atp-mobile-application-5": {
"type": "image-body-module",
"id": "atp-mobile-application-5"
},
"sungevity-website": {
"type": "work-page",
"name": "Sungevity",
"subName": "website",
"image": "sungevity_smaller.png",
"modules": ["sungevity-website-1", "sungevity-website-2", "sungevity-website-3", "sungevity-website-4", "sungevity-website-5", "sungevity-website-6", "sungevity-website-7"],
"id": "sungevity-website"
},
"sungevity-website-1": {
"type": "image-hero-module",
"image": "sungevity_hero.png",
"height": 800,
"title": "*Sungevity:* \nBuilding for tomorrow, today",
"link": {},
"id": "sungevity-website-1"
},
"sungevity-website-2-1": {
"title": "Challenge",
"text": "Sungevity was changing the game in residential solar installation by using GPS technology to create instantaneous quotes, but they needed a website that could both help them and help customers understand the value.",
"size": "small",
"id": "sungevity-website-2-1",
"type": "line"
},
"sungevity-website-2": {
"lines": ["sungevity-website-2-1"],
"id": "sungevity-website-2",
"type": "text-module"
},
"sungevity-website-3": {
"type": "image-body-module",
"image": "sungevity_sketches.png",
"height": 500,
"link": {},
"id": "sungevity-website-3"
},
"sungevity-website-4-1": {
"type": "line",
"title": "Sunny Days Ahead",
"text": "The website takes users through a funnel that feels as warm and easy as sunbathing.",
"size": "small",
"id": "sungevity-website-4-1"
},
"sungevity-website-4-2": {
"type": "line",
"text": "And Sungevity can instantaneously experiment with steps in the funnel to optimize conversions. Why shoot for the moon when you can have the sun?",
"size": "small",
"id": "sungevity-website-4-2"
},
"sungevity-website-4": {
"lines": ["sungevity-website-4-1", "sungevity-website-4-2"],
"id": "sungevity-website-4",
"type": "text-module"
},
"sungevity-website-5": {
"type": "image-body-module",
"image": "sungevity_device.png",
"height": 500,
"link": {},
"id": "sungevity-website-5"
},
"sungevity-website-6-1": {
"title": "Success",
"text": "The website was an immediate success. It helped consumers learn quickly, and helped Sungevity optimize on the fly. The website played a crucial role in Sungevity's quick rise to success.",
"size": "small",
"id": "sungevity-website-6-1",
"type": "line"
},
"sungevity-website-6": {
"lines": ["sungevity-website-6-1"],
"id": "sungevity-website-6",
"type": "text-module"
},
"sungevity-website-7": {
"type": "image-body-module",
"image": "sungevity_last.png",
"height": 500,
"link": {},
"id": "sungevity-website-7"
},
"autodesk-in-trial-marketing-campaign": {
"type": "work-page",
"name": "Autodesk",
"subName": "in-trial marketing campaign",
"image": "autodesk_itm_work_module3.png",
"modules": ["autodesk-in-trial-marketing-campaign-1", "autodesk-in-trial-marketing-campaign--23cf5115-4f7a-4ab1-aaf2-c604f89420bf", "autodesk-in-trial-marketing-campaign-3", "autodesk-in-trial-marketing-campaign-4", "autodesk-in-trial-marketing-campaign-5", "autodesk-in-trial-marketing-campaign-6", "autodesk-in-trial-marketing-campaign-7", "autodesk-in-trial-marketing-campaign-8", "autodesk-in-trial-marketing-campaign-9", "autodesk-in-trial-marketing-campaign-10", "autodesk-in-trial-marketing-campaign-11"],
"id": "autodesk-in-trial-marketing-campaign"
},
"autodesk-in-trial-marketing-campaign-1": {
"type": "image-hero-module",
"image": "autodesk_itm_hero3.png",
"height": 800,
"title": "*Autodesk:*\nInspiring people to reach high ",
"link": {},
"id": "autodesk-in-trial-marketing-campaign-1"
},
"autodesk-in-trial-marketing-campaign-2-1": {
"type": "line",
"title": "Challenge",
"text": "Autodesk came to us with a challenge. Lots of people download free trials and then drop off the planet.\n",
"size": "large",
"id": "autodesk-in-trial-marketing-campaign-2-1"
},
"autodesk-in-trial-marketing-campaign-2-2": {
"type": "line",
"text": "",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-2-2"
},
"autodesk-in-trial-marketing-campaign-2": {
"lines": ["autodesk-in-trial-marketing-campaign-2-1", "autodesk-in-trial-marketing-campaign-2-2"],
"id": "autodesk-in-trial-marketing-campaign-2",
"type": "text-module"
},
"autodesk-in-trial-marketing-campaign-3": {
"type": "image-body-module",
"image": "moto2.png",
"height": 500,
"link": {},
"id": "autodesk-in-trial-marketing-campaign-3"
},
"autodesk-in-trial-marketing-campaign-4-1": {
"type": "line",
"title": "Insight",
"text": "We started with research: interviews, analytics, and fumbling around the software. People get easily discouraged. (We understand.) ",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-4-1"
},
"autodesk-in-trial-marketing-campaign-4-2": {
"type": "line",
"text": "We realized there's an incredible opportunity to make inspiration an integral part of the value proposition of the software. Inspiring people to reach their dreams would benefit everyone.\n",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-4-2"
},
"autodesk-in-trial-marketing-campaign-4-3": {
"type": "line",
"text": "We also discovered that when people seek Support, they are more likely to convert. By double digits.",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-4-3"
},
"autodesk-in-trial-marketing-campaign-4": {
"lines": ["autodesk-in-trial-marketing-campaign-4-1", "autodesk-in-trial-marketing-campaign-4-2", "autodesk-in-trial-marketing-campaign-4-3"],
"id": "autodesk-in-trial-marketing-campaign-4",
"type": "text-module"
},
"autodesk-in-trial-marketing-campaign-5": {
"type": "image-body-module",
"image": "autodesk_itm_landing.png",
"height": 500,
"link": {},
"id": "autodesk-in-trial-marketing-campaign-5"
},
"autodesk-in-trial-marketing-campaign-6-1": {
"type": "line",
"title": "Inspiration",
"text": "We crafted an ecosystem of AutoCAD enthusiasts who were willing to help beginners ramp up. The key to success was to craft a personable tone. This represented a significant break from the past.",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-6-1"
},
"autodesk-in-trial-marketing-campaign-6-2": {
"type": "line",
"text": "\n\nFrom headlines to descriptions, it felt like a real person talking. \n\nWe also told the real stories of the AutoCAD \"Mentors.\" From struggle to triumph, we let Autodesk customers inspire others to believe in themselves and reach their dreams.",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-6-2"
},
"autodesk-in-trial-marketing-campaign-6-3": {
"type": "line",
"text": "From headlines to descriptions, it felt like a real person talking. ",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-6-3"
},
"autodesk-in-trial-marketing-campaign-6": {
"type": "text-module",
"lines": ["autodesk-in-trial-marketing-campaign-6-1", "autodesk-in-trial-marketing-campaign-6-3", "66c982c1-22ad-460a-8ac9-5b5028fffbfa"],
"id": "autodesk-in-trial-marketing-campaign-6"
},
"autodesk-in-trial-marketing-campaign-7": {
"type": "image-body-module",
"image": "auesk_itm_pops.png",
"height": 500,
"link": {},
"id": "autodesk-in-trial-marketing-campaign-7"
},
"autodesk-in-trial-marketing-campaign-8-1": {
"title": "If I did it, so can you!",
"text": "We couldn't have made up better stories: One Mentor started off in factory canning fish. An injury \"inspired\" him to take a few classes. A few years later he was designing waterways. Fish loved 'em!",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-8-1",
"type": "line"
},
"autodesk-in-trial-marketing-campaign-8": {
"lines": ["autodesk-in-trial-marketing-campaign-8-1"],
"id": "autodesk-in-trial-marketing-campaign-8",
"type": "text-module"
},
"autodesk-in-trial-marketing-campaign-9": {
"type": "image-body-module",
"image": "ITM_emails.png",
"height": 500,
"link": {},
"id": "autodesk-in-trial-marketing-campaign-9"
},
"autodesk-in-trial-marketing-campaign-10-1": {
"title": "The results",
"text": "The campaign prompted a company wide shift towards a more personable tone. ",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-10-1",
"type": "line"
},
"autodesk-in-trial-marketing-campaign-10-2": {
"text": "And Autodesk asked us to spread the campaign across over 25 products.",
"size": "small",
"id": "autodesk-in-trial-marketing-campaign-10-2",
"type": "line"
},
"autodesk-in-trial-marketing-campaign-10": {
"lines": ["autodesk-in-trial-marketing-campaign-10-1", "autodesk-in-trial-marketing-campaign-10-2"],
"id": "autodesk-in-trial-marketing-campaign-10",
"type": "text-module"
},
"autodesk-in-trial-marketing-campaign-11": {
"type": "image-body-module",
"image": "autodesk_products.png",
"height": 500,
"link": {},
"id": "autodesk-in-trial-marketing-campaign-11"
},
"california-closets-motion": {
"id": "california-closets-motion",
"name": "California Closets",
"subName": "motion",
"type": "work-page",
"modules": ["california-closets-motion-1", "california-closets-motion-2", "california-closets-motion-3", "california-closets-motion-4", "california-closets-motion-5", "california-closets-motion-6", "california-closets-motion-7", "california-closets-motion-8", "california-closets-motion-9", "california-closets-motion-10", "california-closets-motion-11"]
},
"california-closets-motion-1": {
"type": "image-hero-module",
"image": "ccmotion_hero.png",
"height": 800,
"title": "Lorem ipsum dolor sit amet, amet mnesarchum\nEa adhuc delenit invidunt quo.",
"link": {},
"id": "california-closets-motion-1"
},
"california-closets-motion-2-1": {
"title": "California Closets",
"text": "More than a closet.",
"size": "large",
"id": "california-closets-motion-2-1",
"type": "line"
},
"california-closets-motion-2-2": {
"text": "While California Closets sells storage solutions, what they're really selling is something much deeper. Peace of mind.",
"size": "small",
"id": "california-closets-motion-2-2",
"type": "line"
},
"california-closets-motion-2-3": {
"text": "How to communicate the genuine emotional benefit of a great storage solution on a website built to convert sales?",
"size": "small",
"id": "california-closets-motion-2-3",
"type": "line"
},
"california-closets-motion-2": {
"lines": ["california-closets-motion-2-1", "california-closets-motion-2-2", "california-closets-motion-2-3"],
"id": "california-closets-motion-2",
"type": "text-module"
},
"california-closets-motion-3": {
"type": "image-body-module",
"image": "ccm2.png",
"height": 800,
"link": {},
"id": "california-closets-motion-3"
},
"california-closets-motion-4-1": {
"title": "The Audience",
"text": "We started by getting to know the audience more deeply. Using both qualitative and quantitative methodologies, we created 5 personas. \n",
"size": "small",
"id": "california-closets-motion-4-1",
"type": "line"
},
"california-closets-motion-4-2": {
"text": "The personas describe not only buying habits and personality, but they go a level deeper: what are the emotional drivers? What are the inspirations? ",
"size": "small",
"id": "california-closets-motion-4-2",
"type": "line"
},
"california-closets-motion-4": {
"lines": ["california-closets-motion-4-1", "california-closets-motion-4-2"],
"id": "california-closets-motion-4",
"type": "text-module"
},
"california-closets-motion-5": {
"type": "image-body-module",
"image": "personas.png",
"height": "500",
"link": {},
"id": "california-closets-motion-5"
},
"california-closets-motion-6-1": {
"title": "Storyboarding",
"text": "We then created scenarios for a video that would live on the homepage and feature each of the five Personas relaxing at home. Nothing cheesy. Nothing over the top. Nothing that forced the use of the product. \n",
"size": "small",
"id": "california-closets-motion-6-1",
"type": "line"
},
"california-closets-motion-6-2": {
"text": "Our goal was for the audience to feel an emotional connection with someone who could well be a good friend. Natural.",
"size": "small",
"id": "california-closets-motion-6-2",
"type": "line"
},
"california-closets-motion-6": {
"lines": ["california-closets-motion-6-1", "california-closets-motion-6-2"],
"id": "california-closets-motion-6",
"type": "text-module"
},
"california-closets-motion-7": {
"type": "image-body-module",
"image": "script.png",
"height": "500",
"link": {},
"id": "california-closets-motion-7"
},
"california-closets-motion-8-1": {
"title": "On the set",
"text": "Every angle, every light, every movement, was about creating the right mood. Light, easy, peaceful, relaxing.\n",
"size": "small",
"id": "california-closets-motion-8-1",
"type": "line"
},
"california-closets-motion-8-2": {
"text": "Taking off your shoes after work and putting them into the empty spot on the shoe shelf. Pulling just the right book off shelf to read to your daughter. ",
"size": "small",
"id": "california-closets-motion-8-2",
"type": "line"
},
"california-closets-motion-8": {
"lines": ["california-closets-motion-8-1", "california-closets-motion-8-2"],
"id": "california-closets-motion-8",
"type": "text-module"
},
"california-closets-motion-9": {
"type": "image-body-module",
"image": "ccm_3.png",
"height": "500",
"link": {},
"id": "california-closets-motion-9"
},
"california-closets-motion-10-1": {
"title": "Writing relaxation",
"text": "The writing had to feel as simple as the video. Designed This is the stuff of life. The stuff that makes California Closets magical.\n\n",
"size": "small",
"id": "california-closets-motion-10-1",
"type": "line"
},
"california-closets-motion-10-2": {
"text": "\"It's exactly what I imagined.\"",
"size": "small",
"id": "california-closets-motion-10-2",
"type": "line"
},
"california-closets-motion-10": {
"lines": ["california-closets-motion-10-1", "california-closets-motion-10-2"],
"id": "california-closets-motion-10",
"type": "text-module"
},
"california-closets-motion-11": {
"type": "image-body-module",
"image": "ccm_1.png",
"height": 800,
"link": {},
"id": "california-closets-motion-11"
},
"illumio-branding": {
"id": "illumio-branding",
"name": "Illumio",
"subName": "branding",
"type": "work-page",
"modules": ["illumio-branding-1", "illumio-branding-2", "illumio-branding-3", "illumio-branding-4", "illumio-branding-5"]
},
"illumio-branding-1": {
"type": "image-hero-module",
"image": "illumio_hero.png",
"height": "500",
"link": {},
"id": "illumio-branding-1"
},
"illumio-branding-2-1": {
"title": "Illumio",
"text": "Unprecedented visibility",
"size": "large",
"id": "illumio-branding-2-1",
"type": "line"
},
"illumio-branding-2-2": {
"text": "A startup comes to you with an unprecedented solution for network visibility and security. They want a name that is short, descriptive and available as a .com",
"size": "small",
"id": "illumio-branding-2-2",
"type": "line"
},
"illumio-branding-2": {
"lines": ["illumio-branding-2-1", "illumio-branding-2-2"],
"id": "illumio-branding-2",
"type": "text-module"
},
"illumio-branding-3": {
"type": "image-body-module",
"image": "i_naming.png",
"height": "500",
"link": {},
"id": "illumio-branding-3"
},
"illumio-branding-4-1": {
"title": "Then there was a light",
"text": "We had our work cut out for us. We were set on using a word connected to visibility. Luckily, there are lots of them in the English language. ",
"size": "small",
"id": "illumio-branding-4-1",
"type": "line"
},
"illumio-branding-4-2": {
"text": "We created a list of hundreds of roots. Still, all paths kept leading back to illuminate. It captured the essence of the company.\n",
"size": "small",
"id": "illumio-branding-4-2",
"type": "line"
},
"illumio-branding-4-3": {
"text": "When one of our writers said Illumio, it was like light bulbs went on all over Silicon Valley. It was illuminating.",
"size": "small",
"id": "illumio-branding-4-3",
"type": "line"
},
"illumio-branding-4": {
"lines": ["illumio-branding-4-1", "illumio-branding-4-2", "illumio-branding-4-3"],
"id": "illumio-branding-4",
"type": "text-module"
},
"illumio-branding-5": {
"type": "image-body-module",
"image": "ilogo.png",
"height": "500",
"link": {},
"id": "illumio-branding-5"
},
"24-hours-fitness-display-advertising": {
"type": "work-page",
"name": "24 Hours Fitness",
"subName": "display advertising",
"image": "24_work_page.png",
"modules": ["24-hours-fitness-display-advertising-1", "24-hours-fitness-display-advertising-4", "24-hours-fitness-display-advertising-5", "24-hours-fitness-display-advertising-6", "24-hours-fitness-display-advertising-7"],
"id": "24-hours-fitness-display-advertising"
},
"24-hours-fitness-display-advertising-1": {
"type": "image-hero-module",
"image": "24_hero.png",
"height": 800,
"title": "*24 Hours Fitness:*\nInspiring the first step",
"link": {},
"id": "24-hours-fitness-display-advertising-1"
},
"24-hours-fitness-display-advertising-2-1": {
"type": "line",
"title": "24 Hours Fitness",
"text": "Inspiring the first step",
"size": "large",
"id": "24-hours-fitness-display-advertising-2-1"
},
"24-hours-fitness-display-advertising-2-2": {
"text": "We see marketing for 24 Hour Fitness as an act of human kindness. It's about inspiring people to be a better version of themselves.",
"size": "small",
"id": "24-hours-fitness-display-advertising-2-2",
"type": "line"
},
"24-hours-fitness-display-advertising-2": {
"lines": ["24-hours-fitness-display-advertising-2-1", "24-hours-fitness-display-advertising-2-2"],
"id": "24-hours-fitness-display-advertising-2",
"type": "text-module"
},
"24-hours-fitness-display-advertising-3": {
"type": "image-body-module",
"height": "500",
"id": "24-hours-fitness-display-advertising-3"
},
"24-hours-fitness-display-advertising-4-1": {
"title": "Strategy",
"text": "In this spring time display campaign, we tapped into that feeling of wanting to look and feel great for summer vacation.",
"size": "small",
"id": "24-hours-fitness-display-advertising-4-1",
"type": "line"
},
"24-hours-fitness-display-advertising-4": {
"lines": ["24-hours-fitness-display-advertising-4-1"],
"id": "24-hours-fitness-display-advertising-4",
"type": "text-module"
},
"24-hours-fitness-display-advertising-5": {
"type": "image-body-module",
"image": "24_banner_on_screen.png",
"height": 500,
"link": {},
"id": "24-hours-fitness-display-advertising-5"
},
"24-hours-fitness-display-advertising-6-1": {
"title": "The solution",
"text": "Beach scenes and bathing suits. Simple, yet powerful. ",
"size": "small",
"id": "24-hours-fitness-display-advertising-6-1",
"type": "line"
},
"24-hours-fitness-display-advertising-6": {
"lines": ["24-hours-fitness-display-advertising-6-1"],
"id": "24-hours-fitness-display-advertising-6",
"type": "text-module"
},
"24-hours-fitness-display-advertising-7": {
"type": "image-body-module",
"image": "24_last.png",
"height": 500,
"link": {},
"id": "24-hours-fitness-display-advertising-7"
},
"clorox-mobile-application": {
"type": "work-page",
"name": "Clorox",
"subName": "mobile application",
"image": "clorox_work.png",
"modules": ["clorox-mobile-application-1", "clorox-mobile-application-2", "clorox-mobile-application--b75ba536-ceab-4e34-a355-231a03952afd", "clorox-mobile-application-4", "clorox-mobile-application-5", "clorox-mobile-application-6", "clorox-mobile-application-7", "clorox-mobile-application-8", "clorox-mobile-application-9", "clorox-mobile-application-10", "clorox-mobile-application--83974cb9-e26e-4240-8bcf-30376aca7fd5"],
"id": "clorox-mobile-application"
},
"clorox-mobile-application-1": {
"type": "image-hero-module",
"image": "clorox_hero.png",
"height": 800,
"title": "*Clorox:*\nThe go to app for cleaning \n",
"link": {},
"id": "clorox-mobile-application-1"
},
"clorox-mobile-application-2-1": {
"type": "line",
"title": "Finding meaning",
"text": "We brainstormed with the Clorox team: what would be genuinely meaningful for a younger demographic?\n\n\n\n\n",
"size": "small",
"id": "clorox-mobile-application-2-1"
},
"clorox-mobile-application-2-2": {
"title": "Finding our target",
"text": "We learned that our target audience was no longer predominantly women devoting their days to cleaning at home. Life is messier. And often on the go. ",
"size": "small",
"id": "clorox-mobile-application-2-2",
"type": "line"
},
"clorox-mobile-application-2": {
"lines": ["clorox-mobile-application-2-1", "clorox-mobile-application-2-2"],
"id": "clorox-mobile-application-2",
"type": "text-module"
},
"clorox-mobile-application-3": {
"type": "image-body-module",
"image": "messy.png",
"height": 500,
"title": "mess on the go",
"text": "",
"link": {},
"id": "clorox-mobile-application-3"
},
"clorox-mobile-application-4-1": {
"title": "Challenge",
"text": "Clorox was heavily associated with bleach, whites and old ladies. They came to us to help create an app to rejuvenate the brand.",
"size": "small",
"id": "clorox-mobile-application-4-1",
"type": "line"
},
"clorox-mobile-application-4": {
"type": "text-module",
"lines": ["clorox-mobile-application-4-1"],
"id": "clorox-mobile-application-4"
},
"clorox-mobile-application-5": {
"type": "image-body-module",
"image": "clorox_wireframes.png",
"height": 500,
"title": "",
"link": {},
"id": "clorox-mobile-application-5"
},
"clorox-mobile-application-6-1": {
"title": "On-the-go tips",