-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick-tasty2.html
1005 lines (971 loc) · 41.1 KB
/
quick-tasty2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="author" content="Francesca Paris" />
<meta
name="description"
content="UI / UX design portfolio showcasing mobile concept apps and resposive web apps"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Condensed:wght@100;200;500&family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Work+Sans:wght@500;600&display=swap"
rel="stylesheet"
/>
<link href="img/favicon-32x32.png" rel="shortcut icon" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/flex-cards-page.css" />
<link rel="stylesheet" type="text/css" href="css/quick-tasty.css" />
<title>Francesca Paris | Quick & Tasty</title>
</head>
<body>
<header>
<div class="container container-sm">
<div class="row-nm">
<div class="col-6 col-md-6 col-lg-6">
<div>
<a href="index.html"
><img
src="img/logo-desktop.svg"
alt="Francesca Paris"
class="logo"
/></a>
</div>
</div>
<div class="col-6 col-md-6 col-lg-6">
<div class="navtoggle" id="myNavtoggle">
<nav>
<ul>
<li><a href="index.html">Work</a></li>
<li><a href="about.html">About me</a></li>
<li><a href="contact-me.html">Contact</a></li>
<li class="icon">
<a
href="javascript:void(0);"
class="icon"
onclick="menuToggle()"
><svg
width="26"
height="40"
viewBox="0 0 26 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1 1H25"
stroke="black"
stroke-width="2"
stroke-linecap="round"
/>
<path
d="M1 11H25"
stroke="black"
stroke-width="2"
stroke-linecap="round"
/>
<path
d="M1 21H25"
stroke="black"
stroke-width="2"
stroke-linecap="round"
/>
</svg>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container" id="quick-tasty">
<!-- Intro image -->
<section class="hero-section">
<div>
<picture>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:1024px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:1024px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:500px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:500px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:499px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:499px)"
type="image/png"
/>
<img
srcset="img/quick-tasty/case-study2/[email protected]"
alt="Quick & Tasty app intro screens"
class="center"
/>
</picture>
</div>
</section>
<!-- The challenge -->
<section id="challenge">
<h1>The Challenge</h1>
<p>
The challenge was to create a recipe web app. The result was Quick &
Tasty, a recipe app with quick and easy-to-make meals, where the
user can find something by taste or also choose one of the available
menus to make sure the meal will be healthy and balanced.
</p>
</section>
<!-- Process section -->
<section class="process-section h1024">
<h1>The Process</h1>
<div class="process-cards">
<div class="flex-cards">
<!-- CARD 1 -->
<div id="card1" class="flex process-card active">
<!-- <a href="javascript:void(0);" onclick="cardsFunction()"> -->
<div class="label">
<img
src="img/quick-tasty/case-study2/icn_user-research.svg"
width="44px"
alt="magnifying glass lens in front of a person"
/>
<div class="process-number">1</div>
<div class="rotate-90 step-title">Discovery</div>
</div>
<div class="process-content">
<div class="grid-2col">
<div>
<div class="content-title mb-28">Competitor Analysis</div>
<div class="flex-column gap-20">
<div class="content-step">
<img
src="img/quick-tasty/case-study2/noun-recipe-book.svg"
alt="icon of a recipe book"
width="72px"
/>
<p>Apps had many categories and recipes</p>
</div>
<div class="content-step">
<img
src="img/quick-tasty/case-study2/noun-time-meal.svg"
alt=""
width="72px"
/>
<p>
Different websites offered a subscription to a
tailored meal planner
</p>
</div>
<div class="content-step">
<img
src="img/quick-tasty/case-study2/noun-meal-sections.svg"
alt=""
width="72px"
/>
<p>
No apps offered the possibility of creating your own
custom balanced meal by placing different recipes in
the same day menu.
</p>
</div>
</div>
</div>
<div>
<div class="content-title mb-28 center-text">
User interviews
</div>
<div class="flex-column gap-20">
<div>
<img
class="center"
src="img/quick-tasty/case-study2/question-mark.svg"
width="72px"
alt="question mark"
/>
<p class="content-step center-text">
Do people want healthy and balanced recipes?
</p>
</div>
<p class="content-step">
The prevalent user need was finding quick and easy
recipes for tasty meals.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- CARD 2 -->
<div id="card2" class="flex process-card closed">
<div class="label">
<img
src="img/quick-tasty/case-study2/icn_MVP.svg"
width="44px"
alt="magnifying glass lens in front of a person"
/>
<div class="process-number">2</div>
<div class="rotate-90 step-title">Definition</div>
</div>
<!-- Card Content -->
<div class="process-content">
<div class="grid-card2">
<div>
<div class="content-title mb-28">App Features</div>
<div>
<ul class="ml-24 flex-column gap-20">
<li>
Recipe app focused on
<strong>easy and quick</strong> recipes
</li>
<li><strong>Easy-to-find ingredients</strong></li>
<li>
Possibility to choose according to
<strong>taste</strong>, country, diet
</li>
<li>
<strong>Add your own recipes</strong> to the app
</li>
</ul>
</div>
</div>
<div class="card2-image">
<img
class="image2"
src="img/quick-tasty/case-study2/food-on-table.jpg"
alt="bowls with food on the table"
/>
</div>
</div>
</div>
</div>
<!-- CARD 3 -->
<div id="card3" class="flex process-card closed">
<div class="label">
<img
src="img/quick-tasty/case-study2/icn_user-testing.svg"
width="44px"
alt="magnifying glass lens in front of a person"
/>
<div class="process-number">3</div>
<div class="rotate-90 step-title">
Rough prototype & testing
</div>
</div>
<!-- Card content -->
<div class="process-content">
<div>
<div>
<div class="grid-2col mb-48-m">
<div>
<p>
I created some wireframes and a rough prototype with
those.
</p>
<p>Then I conducted a usability test.</p>
</div>
<div> </div>
</div>
<div></div>
<div class="content-title mb-28">
Pain points from the test
</div>
<div class="pain-points-grid">
<!-- Point 1 -->
<div>
<p>
Users did not understand the section had both the
liked recipes and the user ones.
</p>
<p>
→<strong> solution:</strong> changing the
label in <em>"My Recipes and Favourites"</em>
</p>
</div>
<!-- Point 2 -->
<div>
<p>
Users were expecting to find the personal recipes
link in the hamburger menu.
</p>
<p>
→<strong> solution:</strong> added link from
the hamburger menu to the
<em>My Recipes and Favourites</em> section.
</p>
</div>
<!-- Point 3 -->
<div>
<p>
The section had different categories, such as
<em>Recent</em> or <em>By Meal</em>, so users could
scroll through their own personal recipe book. The
users found the UI confusing.
</p>
<p>
→<strong> solution:</strong> deleted the tabs
and added a filter button for a more familiar
filtration of the recipes.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CARD 4 -->
<div id="card4" class="flex process-card closed">
<div class="label">
<img
src="img/quick-tasty/case-study2/icn_high-fidelity.svg"
width="44px"
alt="magnifying glass lens in front of a person"
/>
<div class="process-number">4</div>
<div class="rotate-90 step-title">
Hi-fi screens & a/b Testing
</div>
</div>
<div class="process-content">
<div class="grid-2col">
<p class="mb-48-m">
I created the style guide and the high-fidelity screens.
</p>
<div> </div>
</div>
<div>
<div class="content-title mb-28">Preference Test</div>
<p class="mb-20">
I ran a <strong>A/B test</strong> to clear some doubts.
</p>
</div>
<div>
<img
src="img/quick-tasty/case-study2/preference-test.png"
alt=""
/>
</div>
<p class="mt-20">
60% of the participants liked more Choice 1. From this test
I also understood participants preferred to have less
categories, so I decreased the categories to 5.
</p>
</div>
</div>
<!-- CARD 5 -->
<div id="card5" class="flex process-card closed">
<div class="label">
<img
src="img/quick-tasty/case-study2/icn_mock-up.svg"
width="44px"
alt="magnifying glass lens in front of a person"
/>
<div class="process-number">5</div>
<div class="rotate-90 step-title">Finalization</div>
</div>
<div class="process-content">
<div class="grid-2col mb-28">
<div>
<p>
I created the <strong> responsive screens</strong> and
finished working on the
<strong>high-fidelity</strong> screens.
</p>
</div>
<div> </div>
</div>
<div>
<img
src="img/quick-tasty/case-study2/step5-screens.png"
alt=""
/>
</div>
</div>
</div>
</div>
</div>
<div>
<p class="attribution">
Icons inside the discovery section are from the
<a href="https://thenounproject.com/">Noun project</a>. Authors:
Tippawan Sookruay, monkik, Nithinan Tatah.
</p>
</div>
</section>
<!-- User needs section -->
<section class="needs-section">
<h1>User Needs & Solutions</h1>
<div class="grid-needs">
<!-- Need 1 -->
<div class="needs-description">
<div class="flex-column gap-36">
<div class="need-box">
<blockquote>
“I usually cook quickly something easy”
</blockquote>
<p>
<strong>Solution:</strong><br />
A collection of recipes that can be made quickly with
easy-to-find ingredients
</p>
</div>
<div class="need-box">
<blockquote>
“I choose what to eat according to what I feel like eating
at the moment”
</blockquote>
<p>
<strong>Solution:</strong><br />
Taste filters to get quickly to what you want
</p>
</div>
</div>
</div>
<div class="need-screens">
<picture>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:601px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:601px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/[email protected]"
alt="The mobile screens. one next to the other. One screen shows filters with choices for difficulty, time and taste. The other shows some recipes under the category of Sweet taste."
/>
</picture>
</div>
<!-- Need 2 -->
<div class="needs-description">
<div class="flex-column">
<div class="need-box">
<blockquote>
“I have my own family recipes or use Google to search for
something”
</blockquote>
<p>
<strong>Solution:</strong><br />
Add your recipes to the app and have everything in one
place.
</p>
</div>
</div>
</div>
<div class="need-screens">
<picture>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:601px)"
type="image/webp"
/>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:601px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/[email protected]"
alt="The mobile screens. one next to the other. One screen shows filters with choices for difficulty, time and taste. The other shows some recipes under the category of Sweet taste."
/>
</picture>
</div>
<!-- Need 3 -->
<div class="needs-description">
<div class="flex-column">
<div class="need-box">
<blockquote>
“Sometimes I want to cook something from a certain country,
or a specific diet type. I pay attention to eat healthy.”
</blockquote>
<p>
<strong>Solution:</strong><br />
The app menu has different sections for each need: World
cuisine, Diet and Balanced menus.
</p>
</div>
</div>
</div>
<div class="need-screens">
<picture>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:601px)"
type="image/webp"
/>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:601px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/[email protected]"
alt="The mobile screens. one next to the other. One screen shows filters with choices for difficulty, time and taste. The other shows some recipes under the category of Sweet taste."
/>
</picture>
</div>
</div>
</section>
<!-- Responsive section -->
<section class="responsive-section">
<h1>Responsive screens</h1>
<picture>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:1024px)"
type="image/webp"
/>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:1024px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:601px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(min-width:601px)"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:600px)"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/[email protected]"
alt="The mobile screens. one next to the other. One screen shows filters with choices for difficulty, time and taste. The other shows some recipes under the category of Sweet taste."
/>
</picture>
</section>
<!-- final section -->
<section class="final-screens-section">
<h1>Final screens</h1>
<div class="final-screens mobile-only">
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/01-home.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/01-home.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/01-home.png"
alt="the mobile home screen has a hero image showing 3 dishes, on top there is written Tasty recipes for busy people"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/02-home2.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/02-home2.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/02-home2.png"
alt="the second part of the home screen has some recipes and at the end some menus"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/03-log-in.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/03-log-in.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/03-log-in.png"
alt="the login screen with an input field for email and one for the password"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/04-register.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/04-register.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/04-register.png"
alt="the register screen with input fields for Email, Password and a last one for confirming the password"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/05-menu.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/05-menu.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/05-menu.png"
alt="the open menu. Here the user can access to: World cuisine, Diet, Courses, Taste, Balanced menus, My recipes and the About section"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/06-taste.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/06-taste.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/06-taste.png"
alt="tapping on the taste section, the user gets to this screen. There are different buttons, each for a different taste type."
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/07-profile.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/07-profile.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/07-profile.png"
alt="screen showing the profile picture, a button for editing and deleting the profile, and a bottom section with a title My recipes & favourites"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/08-add-recipe.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/08-add-recipe.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/08-add-recipe.png"
alt="the edit recipe screen has a picture and multiple input fields, from the recipe title, to its difficulty, taste, time and ingredients"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/09-menu.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/09-menu.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/09-menu.png"
alt="screen showing the menu section. There is an image of the menu and different info"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/10-filters.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/10-filters.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/10-filters.png"
alt="the filter screen where the user can choose difficulty, time, and taste"
/>
</picture>
<picture>
<source
srcset="
img/quick-tasty/case-study2/screens/11-sweet-recipes.webp
"
type="image/webp"
/>
<source
srcset="
img/quick-tasty/case-study2/screens/11-sweet-recipes.png
"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/11-sweet-recipes.png"
alt="a screen showing the sweet taste categories, holding different recipes within it"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/12-recipe.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/12-recipe.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/12-recipe.png"
alt="the recipe screen has an image at the top with the recipe title. Below there are many info, like the nutritional info and recipe steps"
/>
</picture>
<picture>
<source
srcset="img/quick-tasty/case-study2/screens/13-recipe2.webp"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/screens/13-recipe2.png"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/screens/13-recipe2.png"
alt="screen showing the second part of the recipe page."
/>
</picture>
</div>
<picture class="all-high-screens">
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:1024px)"
type="image/webp"
/>
<source
srcset="
img/quick-tasty/case-study2/[email protected],
img/quick-tasty/case-study2/[email protected] 2x
"
media="(min-width:1024px"
type="image/png"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:1023px)"
type="image/webp"
/>
<source
srcset="img/quick-tasty/case-study2/[email protected]"
media="(max-width:1023px)"
type="image/png"
/>
<img
src="img/quick-tasty/case-study2/[email protected]"
alt="The mobile screens. one next to the other. One screen shows filters with choices for difficulty, time and taste. The other shows some recipes under the category of Sweet taste."
/>
</picture>
</section>
</div>
</main>
<footer id="contact">
<div class="container">
<div class="row-nm">
<div class="col-12">
<h3>Get in Touch</h3>
<p>
Do you like my work and want to discuss opportunities? Please get
in touch.
</p>
</div>
</div>
<div class="row-nm">
<div class="col-12">
<a href="mailto:[email protected]" class="button contact"
>Email me</a
>
</div>
</div>
<div class="row-nm">
<div class="col-12">
<!--Social Media Layout and Placeholders-->
<a href="https://www.behance.net/francescaparis">
<!-- Behance icon -->
<svg
enable-background="new 0 0 56.693 56.693"
height="56.693px"
id="Behance-icon"
version="1.1"
viewBox="0 0 56.693 56.693"
width="56.693px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<g>
<path
style="fill: #696c65"
d="M23.556,29.975c0,0,4.701-0.35,4.701-5.863c0-5.514-3.846-8.206-8.719-8.206h-8.97h-0.263H3.503v30.815h6.802h0.263h8.97 c0,0,9.788,0.309,9.788-9.096C29.325,37.625,29.753,29.975,23.556,29.975z M10.568,21.383h7.815h1.154c0,0,2.18,0,2.18,3.205 c0,3.207-1.283,3.672-2.736,3.672h-8.414V21.383z M19.084,41.244c-0.237,0.006-0.438,0-0.573,0h-7.943V33.01h8.97 c0,0,3.249-0.043,3.249,4.23C22.786,40.846,20.36,41.217,19.084,41.244z"
/>
<path
style="fill: #696c65"
d="M42.382,23.746c-11.85,0-11.84,11.84-11.84,11.84s-0.812,11.779,11.84,11.779c0,0,10.545,0.602,10.545-8.195h-5.424 c0,0,0.18,3.314-4.941,3.314c0,0-5.422,0.361-5.422-5.363h15.967C53.106,37.121,54.854,23.746,42.382,23.746z M37.079,33.01 c0,0,0.662-4.75,5.422-4.75c4.762,0,4.699,4.75,4.699,4.75H37.079z"
/>
<rect
style="fill: #696c65"
height="3.795"
width="12.711"
x="35.753"
y="17.721"
/>
</g>
</svg>
</a>
<a href="https://dribbble.com/FrancescaParis">
<!-- Dribbble icon -->
<svg
enable-background="new 0 0 56.693 56.693"
height="56.693px"
id="Dribbble-icon"
version="1.1"
viewBox="0 0 56.693 56.693"
width="56.693px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
style="fill: #696c65"
clip-rule="evenodd"
d="M52.43,24.152c-0.324-1.588-0.811-3.152-1.441-4.646 c-0.619-1.467-1.387-2.879-2.279-4.199c-0.885-1.309-1.9-2.539-3.018-3.656c-1.117-1.119-2.348-2.135-3.656-3.018 c-1.32-0.895-2.734-1.66-4.199-2.281c-1.494-0.629-3.057-1.117-4.646-1.439c-1.627-0.334-3.303-0.504-4.977-0.504 c-1.676,0-3.35,0.17-4.979,0.504c-1.588,0.322-3.152,0.811-4.645,1.439c-1.465,0.621-2.879,1.387-4.201,2.281 c-1.309,0.883-2.539,1.898-3.656,3.018c-1.118,1.117-2.132,2.348-3.016,3.656c-0.893,1.32-1.66,2.732-2.279,4.199 C4.805,21,4.32,22.564,3.995,24.152c-0.333,1.625-0.502,3.301-0.502,4.976c0,1.678,0.169,3.354,0.502,4.98 c0.325,1.588,0.811,3.152,1.442,4.645c0.619,1.465,1.387,2.881,2.279,4.201c0.884,1.309,1.898,2.537,3.016,3.656 c1.117,1.117,2.348,2.131,3.656,3.016c1.322,0.893,2.736,1.66,4.201,2.279c1.492,0.633,3.057,1.115,4.645,1.441 c1.629,0.336,3.303,0.504,4.979,0.504c1.674,0,3.35-0.168,4.977-0.504c1.59-0.326,3.152-0.809,4.646-1.441 c1.465-0.619,2.879-1.387,4.199-2.279c1.309-0.885,2.539-1.898,3.656-3.016c1.117-1.119,2.133-2.348,3.018-3.656 c0.893-1.32,1.66-2.736,2.279-4.201c0.631-1.492,1.117-3.057,1.441-4.645c0.334-1.627,0.502-3.303,0.502-4.98 C52.932,27.453,52.764,25.777,52.43,24.152z M49.316,28.919c-0.305-0.066-7.449-1.604-14.703-0.692 c-0.148-0.361-0.299-0.725-0.455-1.09c-0.439-1.033-0.912-2.057-1.404-3.062c8.338-3.402,11.723-8.297,11.762-8.355 C47.477,19.314,49.268,23.908,49.316,28.919z M42.156,13.285c-0.053,0.082-3.059,4.658-11.027,7.645 c-3.609-6.631-7.574-11.898-7.891-12.316c1.596-0.387,3.26-0.596,4.975-0.596C33.559,8.018,38.436,10.01,42.156,13.285z M23.156,8.631c0,0.002-0.004,0.004-0.004,0.004s-0.023,0.006-0.062,0.014C23.111,8.643,23.135,8.639,23.156,8.631z M19.205,10.035 c0.281,0.377,4.186,5.67,7.84,12.164c-10.137,2.693-18.934,2.588-19.492,2.578C8.925,18.238,13.318,12.816,19.205,10.035z M7.102,29.128c0-0.225,0.01-0.445,0.018-0.667c0.372,0.008,10.804,0.245,21.673-3.008c0.605,1.184,1.184,2.387,1.713,3.589 c-0.279,0.078-0.557,0.162-0.832,0.252c-11.393,3.682-17.172,13.934-17.172,13.934s0.008,0.006,0.008,0.01 C9.149,39.497,7.102,34.552,7.102,29.128z M28.213,50.241c-5.109,0-9.795-1.816-13.447-4.838c0.277,0.225,0.473,0.369,0.473,0.369 s4.047-8.826,16.566-13.188c0.047-0.018,0.094-0.031,0.141-0.045c2.971,7.719,4.197,14.184,4.51,16.029 C33.922,49.646,31.137,50.241,28.213,50.241z M40.01,46.64c-0.215-1.275-1.34-7.471-4.109-15.08 c6.814-1.09,12.721,0.779,13.156,0.922C48.117,38.364,44.75,43.438,40.01,46.64z"
fill-rule="evenodd"
/>
</svg>
</a>
<a
href="https://www.linkedin.com/in/francescaparis/"
target="_blank"
>
<!-- LinkedIn icon -->
<svg
enable-background="new 0 0 56.693 56.693"
height="56.693px"
id="LinkedIn-icon"
version="1.1"
viewBox="0 0 56.693 56.693"
width="56.693px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<g>
<path
style="fill: #696c65"
d="M30.071,27.101v-0.077c-0.016,0.026-0.033,0.052-0.05,0.077H30.071z"
/>
<path
style="fill: #696c65"
d="M49.265,4.667H7.145c-2.016,0-3.651,1.596-3.651,3.563v42.613c0,1.966,1.635,3.562,3.651,3.562h42.12 c2.019,0,3.654-1.597,3.654-3.562V8.23C52.919,6.262,51.283,4.667,49.265,4.667z M18.475,46.304h-7.465V23.845h7.465V46.304z M14.743,20.777h-0.05c-2.504,0-4.124-1.725-4.124-3.88c0-2.203,1.67-3.88,4.223-3.88c2.554,0,4.125,1.677,4.175,3.88 C18.967,19.052,17.345,20.777,14.743,20.777z M45.394,46.304h-7.465V34.286c0-3.018-1.08-5.078-3.781-5.078 c-2.062,0-3.29,1.389-3.831,2.731c-0.197,0.479-0.245,1.149-0.245,1.821v12.543h-7.465c0,0,0.098-20.354,0-22.459h7.465v3.179 c0.992-1.53,2.766-3.709,6.729-3.709c4.911,0,8.594,3.211,8.594,10.11V46.304z"
/>
</g>
</svg>
</a>
</div>
</div>
<div class="row-nm">
<div class="col-12">
<p>Copyright Francesca Paris 2021</p>
</div>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"