-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1672 lines (1571 loc) · 64 KB
/
Copy pathindex.html
File metadata and controls
1672 lines (1571 loc) · 64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blinkit Data Storytelling Analysis</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap" rel="stylesheet">
<!-- FontAwesome Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<!-- AOS (Animate On Scroll) CSS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
:root {
--primary-color: #FF6F00;
--secondary-color: #FFAB40;
--accent-color: #FF8C00;
--light-bg: #fff8f0;
--overlay-color: rgba(0, 0, 0, 0.5);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
background: var(--light-bg);
color: #333;
line-height: 1.6;
}
/* Ensure pre elements use the same font */
pre {
font-family: inherit;
}
/* HERO SECTION */
.hero {
position: relative;
height: 100vh; /* Full viewport height */
overflow: hidden;
}
.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.video-container iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 100vh;
transform: translate(-50%, -50%);
object-fit: cover;
pointer-events: none; /* This prevents interaction with the video */
}
/* Gradient overlay for depth */
.hero::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
animation: scaleIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.hero-content p {
font-size: 1.4rem;
margin-bottom: 30px;
letter-spacing: 0.5px;
}
/* CTA Button */
.cta-button {
padding: 15px 30px;
font-size: 1rem;
color: #fff;
background-color: var(--accent-color);
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: var(--primary-color);
}
/* Bouncing Scroll Arrow */
.scroll-down {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 2rem;
color: #fff;
cursor: pointer;
z-index: 3;
animation: float 2s ease-in-out infinite;
}
@keyframes float {
0% { transform: translate(-50%, 0); }
50% { transform: translate(-50%, -15px); }
100% { transform: translate(-50%, 0); }
}
/* STICKY NAVIGATION */
nav {
position: sticky;
top: 0;
z-index: 1000;
background: var(--accent-color);
padding: 10px 0;
text-align: center;
transition: background 0.3s ease;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-weight: 600;
position: relative;
transition: color 0.3s ease;
}
nav a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #fff;
transition: width 0.3s ease;
}
nav a:hover::after {
width: 100%;
}
/* MAIN CONTENT CONTAINER */
.container {
width: 90%;
max-width: 1200px;
margin: 30px auto;
background: #fff;
padding: 30px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
border-radius: 8px;
}
section {
margin-bottom: 60px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section:last-of-type {
border-bottom: none;
}
section.visible {
opacity: 1;
transform: translateY(0);
}
h2 {
margin: 20px 0;
color: var(--primary-color);
}
h3 {
margin: 15px 0;
color: #E65100;
}
h4 {
margin-top: 10px;
color: #BF360C;
}
p {
margin: 10px 0;
}
ul, ol {
margin-left: 20px;
margin-bottom: 10px;
}
.visualization {
margin-bottom: 20px;
}
.insights {
padding: 15px 20px;
background: #fff3e0;
border-left: 6px solid var(--primary-color);
margin-bottom: 20px;
border-radius: 4px;
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
box-shadow 0.3s ease;
}
.insights:hover {
transform: translateX(10px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card {
background: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
box-shadow 0.3s ease;
padding: 20px;
margin-bottom: 20px;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/* Add these styles to your existing CSS */
.insights table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #fff;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
font-family: 'Poppins', sans-serif;
}
.insights th {
background-color: var(--primary-color);
color: #fff;
padding: 12px;
text-align: left;
font-weight: 600;
}
.insights td {
padding: 12px;
border-bottom: 1px solid #eee;
}
.insights tr:last-child td {
border-bottom: none;
}
.insights tr {
transition: background-color 0.3s ease, transform 0.2s ease;
}
.insights tr:hover {
background-color: #fff3e0;
transform: scale(1.01);
}
.table-section {
margin: 25px 0;
}
.table-section h4 {
color: var(--primary-color);
margin-bottom: 15px;
font-size: 1.1rem;
}
.table-container {
border-radius: 8px;
overflow: hidden;
margin: 15px 0;
}
/* Add these new minimalistic animations to your existing CSS */
/* Subtle fade in for sections */
@keyframes subtleFadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Gentle pulse animation */
@keyframes gentlePulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
/* Smooth underline animation */
@keyframes smoothUnderline {
from { width: 0; }
to { width: 100%; }
}
/* Soft glow animation */
@keyframes softGlow {
0% { box-shadow: 0 0 5px rgba(255, 111, 0, 0); }
50% { box-shadow: 0 0 15px rgba(255, 111, 0, 0.2); }
100% { box-shadow: 0 0 5px rgba(255, 111, 0, 0); }
}
/* Apply animations to elements */
.hero-content h1 {
animation: subtleFadeIn 1s ease-out;
}
.hero-content p {
animation: subtleFadeIn 1s ease-out 0.3s forwards;
opacity: 0;
}
.cta-button {
animation: subtleFadeIn 1s ease-out 0.6s forwards;
opacity: 0;
}
.cta-button:hover {
animation: gentlePulse 1s ease-in-out infinite;
}
nav a::after {
animation: none;
transition: width 0.3s ease;
}
nav a:hover::after {
animation: smoothUnderline 0.3s ease-out forwards;
}
.insights {
transition: all 0.3s ease;
}
.insights:hover {
animation: softGlow 2s infinite;
}
.visualization {
transition: transform 0.3s ease;
}
.visualization:hover {
transform: translateY(-5px);
}
/* Smooth scroll behavior for the entire page */
html {
scroll-behavior: smooth;
}
/* Enhanced table animations */
.insights tr {
transition: all 0.2s ease;
}
.insights tr:hover {
transform: translateX(5px);
background-color: rgba(255, 111, 0, 0.05);
}
/* Icon animations */
.fa-solid {
transition: transform 0.3s ease;
}
h2:hover .fa-solid,
h3:hover .fa-solid {
transform: rotate(5deg);
}
/* Card hover effect */
.card {
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Update AOS animations to be more subtle */
[data-aos="fade-up"],
[data-aos="fade-in"],
[data-aos="fade-down"] {
/* Remove these */
}
/* Smooth transition for all interactive elements */
a, button, .card, .insights, .visualization {
transition: all 0.3s ease;
}
/* Enhanced Card Styling */
.insights {
background: linear-gradient(to right bottom, #fff, #fff8f0);
border-radius: 15px;
padding: 25px;
margin: 30px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border-left: 6px solid var(--primary-color);
transition: all 0.3s ease;
}
.insights:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* Enhanced Typography */
.insights h3 {
color: var(--primary-color);
font-size: 1.8rem;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid #FFE0B2;
}
.insights h4 {
color: #E65100;
font-size: 1.4rem;
margin: 25px 0 15px;
display: flex;
align-items: center;
}
.insights h4::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
background: var(--primary-color);
border-radius: 50%;
margin-right: 12px;
}
/* List Styling */
.insights ul {
padding-left: 20px;
margin: 15px 0;
list-style: none; /* Remove default bullets */
}
.insights ul li {
margin: 10px 0;
line-height: 1.6;
position: relative;
padding-left: 20px;
}
.insights ul li::before {
content: '→';
position: absolute;
left: -5px;
color: var(--accent-color);
}
/* For nested lists, remove the arrow from inner list items */
.insights ul ul li::before {
content: '•';
color: var(--primary-color);
left: -15px;
}
/* For third level lists */
.insights ul ul ul li::before {
content: '-';
left: -12px;
}
/* Remove default padding for nested lists */
.insights ul ul {
padding-left: 15px;
margin: 5px 0;
}
.insights ul ul ul {
padding-left: 12px;
}
/* Metrics Highlighting */
.insights strong {
color: var(--primary-color);
font-weight: 600;
padding: 2px 5px;
border-radius: 4px;
background: rgba(255, 111, 0, 0.1);
}
/* Section Dividers */
.insights > ul > li {
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px dashed #FFE0B2;
}
.insights > ul > li:last-child {
border-bottom: none;
}
/* Visualization Container */
.visualization {
background: white;
border-radius: 15px;
padding: 20px;
margin: 30px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.visualization:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* Star Rating Styling */
.insights .star-rating {
color: #FFB300;
font-size: 1.1em;
}
/* Metrics Grid */
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 25px 0;
}
.metric-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
}
.metric-card .value {
font-size: 1.8rem;
color: var(--primary-color);
font-weight: bold;
margin: 10px 0;
}
.metric-card .label {
color: #666;
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.insights {
padding: 20px;
}
.insights h3 {
font-size: 1.5rem;
}
.insights h4 {
font-size: 1.2rem;
}
.metrics-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- HERO SECTION WITH FULLSCREEN YOUTUBE VIDEO -->
<section class="hero">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/FmllsQZyXj4?autoplay=1&mute=1&loop=1&playlist=FmllsQZyXj4&controls=0&modestbranding=1&showinfo=0"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
playsinline
muted
title="Background Video">
</iframe>
</div>
<div class="hero-content">
<h1><i class="fa-solid fa-bolt"></i> Blinkit Analysis</h1>
<p>Data Insights from <strong>March 2023</strong> to <strong>November 2024</strong></p>
<button class="cta-button" onclick="document.getElementById('intro').scrollIntoView({behavior: 'smooth'})">
Explore Analysis
</button>
</div>
<div class="scroll-down" onclick="document.getElementById('intro').scrollIntoView({behavior: 'smooth'})">
<i class="fa-solid fa-angle-down"></i>
</div>
</section>
<!-- STICKY NAVIGATION -->
<nav>
<a href="#intro"><i class="fa-solid fa-info-circle"></i> Introduction</a>
<a href="#sales"><i class="fa-solid fa-credit-card"></i> Sales & Payments</a>
<a href="#customer"><i class="fa-solid fa-user-group"></i> Customer Insights</a>
<a href="#operations"><i class="fa-solid fa-truck"></i> Delivery & Operations</a>
<a href="#inventory"><i class="fa-solid fa-boxes-stacked"></i> Inventory & Products</a>
<a href="#marketing"><i class="fa-solid fa-chart-line"></i> Campaigns </a>
<a href="#sentiment"><i class="fa-solid fa-face-smile"></i> Customer Sentiment</a>
</nav>
<!-- MAIN CONTENT CONTAINER (ANALYSIS SECTIONS) -->
<div class="container">
<!-- INTRODUCTION SECTION -->
<section id="intro" class="section">
<h2><i class="fa-solid fa-info"></i> Introduction</h2>
<p>
Welcome to our comprehensive Blinkit analysis. Using data from <strong>March 2023</strong> to <strong>November 2024</strong>, we have developed interactive Tableau visualizations that capture key trends—from sales and payment methods to customer behavior, delivery efficiency, inventory management, and marketing performance. Each section presents a visualization followed by detailed observations, insights, and actionable recommendations.
</p>
</section>
<!-- SALES & PAYMENT ANALYSIS -->
<section id="sales" class="section">
<h2><i class="fa-solid fa-credit-card"></i> Sales & Payment Analysis</h2>
<!-- Visualization: Overall Sales Trend -->
<div class="visualization">
<div class="tableauPlaceholder" id="viz1739997212943" style="position: relative">
<noscript>
<a href="#">
<img alt="Sales & Payment Performance" src="https://public.tableau.com/static/images/Sa/SalesandPaymentPerformance/SalesPaymentPerformance/1_rss.png" style="border: none" />
</a>
</noscript>
<object class="tableauViz" style="display:none;">
<param name="host_url" value="https%3A%2F%2Fpublic.tableau.com%2F" />
<param name="embed_code_version" value="3" />
<param name="site_root" value="" />
<param name="name" value="SalesandPaymentPerformance/SalesPaymentPerformance" />
<param name="tabs" value="no" />
<param name="toolbar" value="yes" />
<param name="static_image" value="https://public.tableau.com/static/images/Sa/SalesandPaymentPerformance/SalesPaymentPerformance/1.png" />
<param name="animate_transition" value="yes" />
<param name="display_static_image" value="yes" />
<param name="display_spinner" value="yes" />
<param name="display_overlay" value="yes" />
<param name="display_count" value="yes" />
<param name="language" value="en-GB" />
</object>
</div>
<script type="text/javascript">
var divElement = document.getElementById('viz1739997212943');
var vizElement = divElement.getElementsByTagName('object')[0];
if (divElement.offsetWidth > 800) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else if (divElement.offsetWidth > 500) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else {
vizElement.style.width = '100%';
vizElement.style.height = '927px';
}
var scriptElement = document.createElement('script');
scriptElement.src = 'https://public.tableau.com/javascripts/api/viz_v1.js';
vizElement.parentNode.insertBefore(scriptElement, vizElement);
</script>
</div>
<!-- Updated Insights: Sales & Payment Performance -->
<div class="insights">
<h3><i class="fa-solid fa-chart-line"></i> Money Talks: Decoding Blinkit's Financial Pulse & Payment Patterns</h3>
<h4>1. Payment Method Performance (<strong>2023</strong> vs <strong>2024</strong>)</h4>
<ul>
<li><strong>Card Transactions:</strong>
<ul>
<li><strong>2023:</strong> ₹<strong>1,399,377</strong></li>
<li><strong>2024:</strong> ₹<strong>1,466,181</strong></li>
<li><strong>Growth of 4.77%</strong> indicating increased trust in digital payments.</li>
</ul>
</li>
<li><strong>Wallet Transactions:</strong>
<ul>
<li><strong>2023:</strong> ₹<strong>1,378,039</strong></li>
<li><strong>2024:</strong> ₹<strong>1,336,965</strong></li>
<li><strong>Decline of 2.98%</strong>, suggesting reduced promotional campaigns or fewer wallet users.</li>
</ul>
</li>
<li><strong>Cash Transactions:</strong>
<ul>
<li><strong>2023:</strong> ₹<strong>1,346,517</strong></li>
<li><strong>2024:</strong> ₹<strong>1,423,947</strong></li>
<li><strong>Growth of 5.74%</strong>, which implies customers still prefer cash transactions despite digital alternatives.</li>
</ul>
</li>
<li><strong>UPI Transactions:</strong>
<ul>
<li><strong>2023:</strong> ₹<strong>1,340,825</strong></li>
<li><strong>2024:</strong> ₹<strong>1,317,458</strong></li>
<li><strong>Decline of 1.75%</strong>, potentially due to competition from other payment methods.</li>
</ul>
</li>
</ul>
<h4>2. Monthly Sales Trend Observations</h4>
<ul>
<li><strong>Peak Months:</strong>
<ul>
<li>Card transactions peaked in May <strong>2023</strong> (₹<strong>193,157</strong>) and July <strong>2024</strong> (₹<strong>175,685</strong>).</li>
<li>Cash transactions peaked in May <strong>2024</strong> (₹<strong>182,377</strong>).</li>
<li>UPI payments peaked in August <strong>2023</strong> (₹<strong>183,242</strong>).</li>
<li>Wallet transactions were at their highest in August <strong>2023</strong> (₹<strong>160,028</strong>).</li>
</ul>
</li>
<li><strong>Declining Trends:</strong>
<ul>
<li>November <strong>2024</strong> saw the lowest transactions across all methods, particularly for UPI (₹<strong>15,703</strong>).</li>
<li>Card transactions dropped drastically in November <strong>2024</strong> (₹<strong>13,026</strong>).</li>
<li>Wallet payments also hit a low in November (₹<strong>15,294</strong>).</li>
</ul>
</li>
</ul>
<h4>Recommendations for Revenue Growth</h4>
<ul>
<li><strong>Strengthen Digital Payments (Card & UPI):</strong>
<ul>
<li>Offer exclusive discounts for UPI and Card transactions to increase adoption.</li>
<li>Implement loyalty rewards for repeat digital payment users.</li>
</ul>
</li>
<li><strong>Target Low-Performing Months:</strong>
<ul>
<li>November sales are significantly lower across all methods.</li>
<li>Introduce special promotions or festive discounts to boost transactions.</li>
</ul>
</li>
<li><strong>Leverage Seasonal Peaks:</strong>
<ul>
<li>Since May and July show peak transactions, invest in marketing and cashback offers during these months to maximize revenue.</li>
</ul>
</li>
<li><strong>Optimize Wallet Usage:</strong>
<ul>
<li>Since wallet transactions declined by <strong>2.98%</strong>, reintroduce wallet-specific cashback offers to encourage usage.</li>
</ul>
</li>
</ul>
</div>
</section>
<!-- CUSTOMER INSIGHTS & SEGMENTATION -->
<section id="customer" class="section">
<h2><i class="fa-solid fa-user-group"></i> Customer Insights & Segmentation</h2>
<!-- Visualization: Customer Insights Dashboard -->
<div class="visualization">
<div class="tableauPlaceholder" id="viz1739997253590" style="position: relative">
<noscript>
<a href="#">
<img alt="Customer Insights & Segmentation" src="https://public.tableau.com/static/images/Cu/CustomerInsightsandSegmentation_17399925565130/CustomerInsightsSegmentation/1_rss.png" style="border: none" />
</a>
</noscript>
<object class="tableauViz" style="display:none;">
<param name="host_url" value="https%3A%2F%2Fpublic.tableau.com%2F" />
<param name="embed_code_version" value="3" />
<param name="site_root" value="" />
<param name="name" value="CustomerInsightsandSegmentation_17399925565130/CustomerInsightsSegmentation" />
<param name="tabs" value="no" />
<param name="toolbar" value="yes" />
<param name="static_image" value="https://public.tableau.com/static/images/Cu/CustomerInsightsandSegmentation_17399925565130/CustomerInsightsSegmentation/1.png" />
<param name="animate_transition" value="yes" />
<param name="display_static_image" value="yes" />
<param name="display_spinner" value="yes" />
<param name="display_overlay" value="yes" />
<param name="display_count" value="yes" />
<param name="language" value="en-GB" />
</object>
</div>
<script type="text/javascript">
var divElement = document.getElementById('viz1739997253590');
var vizElement = divElement.getElementsByTagName('object')[0];
if (divElement.offsetWidth > 800) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else if (divElement.offsetWidth > 500) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else {
vizElement.style.width = '100%';
vizElement.style.height = '1377px';
}
var scriptElement = document.createElement('script');
scriptElement.src = 'https://public.tableau.com/javascripts/api/viz_v1.js';
vizElement.parentNode.insertBefore(scriptElement, vizElement);
</script>
</div>
<!-- Updated Insights: Customer Insights & Segmentation -->
<div class="insights">
<h3><i class="fa-solid fa-users"></i> Customer Chronicles: Unveiling User Personas & Purchase Patterns</h3>
<h4>1. Customer Segments vs. Total Orders</h4>
<ul>
<li><strong>New Customers:</strong> <strong>6,829</strong> total orders, indicating strong acquisition efforts.</li>
<li><strong>Regular Customers:</strong> <strong>6,598</strong> total orders, showing consistent repeat purchases.</li>
<li><strong>Premium Customers:</strong> <strong>6,452</strong> total orders, indicating a high-value segment.</li>
<li><strong>Inactive Customers:</strong> <strong>6,350</strong> total orders, suggesting a need for re-engagement strategies.</li>
</ul>
<h4>2. Customer Lifetime Value (CLV) Analysis</h4>
<ul>
<li><strong>New Customers:</strong> Avg Order Value ranges from ₹<strong>202</strong> to ₹<strong>2000</strong>, showing a wide disparity.</li>
<li><strong>Regular Customers:</strong> Avg Order Value ranges from ₹<strong>203</strong> to ₹<strong>1995</strong>, indicating steady spending habits.</li>
<li><strong>Premium Customers:</strong> Avg Order Value ranges from ₹<strong>260</strong> to ₹<strong>2000</strong>, highlighting their high purchase potential.</li>
<li><strong>Inactive Customers:</strong> Avg Order Value ranges from ₹<strong>205</strong> to ₹<strong>1995</strong>, suggesting potential to be re-engaged with targeted promotions.</li>
</ul>
<h4>3. Customer Distribution by Location</h4>
<ul>
<li>Highest concentration in major metro cities like <strong>Delhi NCR, Bengaluru, Mumbai, Chennai, and Hyderabad</strong></li>
<li>Meanwhile, cities like <strong>Pune, Ahmedabad, Lucknow, and Coimbatore</strong> show decent presence but clear room for growth. Targeted local marketing and improved logistics in these second-wave Tier 1 and Tier 2 hubs could significantly boost adoption.</li>
</ul>
<h4>Recommendations for Growth</h4>
<ul>
<li><strong>Boost Customer Retention & Engagement:</strong>
<ul>
<li>Launch win-back campaigns with special incentives for Inactive Customers.</li>
<li>Offer exclusive perks and rewards for Premium Customers.</li>
</ul>
</li>
<li><strong>Target High-Value Segments:</strong>
<ul>
<li>Implement subscription models or discounts for Regular Customers.</li>
<li>Provide a seamless onboarding experience and personalized offers for New Customers.</li>
</ul>
</li>
<li><strong>Expand Customer Base in Underrepresented Areas:</strong>
<ul>
<li>Increase targeted advertising in smaller cities like Adoni and Agartala.</li>
<li>Explore localized partnerships with regional sellers and logistic providers.</li>
</ul>
</li>
</ul>
</div>
</section>
<!-- DELIVERY & OPERATIONAL PERFORMANCE -->
<section id="operations" class="section">
<h2><i class="fa-solid fa-truck"></i> Delivery & Operational Performance</h2>
<!-- Visualization: Delivery Efficiency Dashboard -->
<div class="visualization">
<div class="tableauPlaceholder" id="viz1739997278443" style="position: relative">
<noscript>
<a href="#">
<img alt="Delivery & Operational Efficiency" src="https://public.tableau.com/static/images/De/DeliveryandOperationalEfficiency/DeliveryOperationalEfficiency/1_rss.png" style="border: none" />
</a>
</noscript>
<object class="tableauViz" style="display:none;">
<param name="host_url" value="https%3A%2F%2Fpublic.tableau.com%2F" />
<param name="embed_code_version" value="3" />
<param name="site_root" value="" />
<param name="name" value="DeliveryandOperationalEfficiency/DeliveryOperationalEfficiency" />
<param name="tabs" value="no" />
<param name="toolbar" value="yes" />
<param name="static_image" value="https://public.tableau.com/static/images/De/DeliveryandOperationalEfficiency/DeliveryOperationalEfficiency/1.png" />
<param name="animate_transition" value="yes" />
<param name="display_static_image" value="yes" />
<param name="display_spinner" value="yes" />
<param name="display_overlay" value="yes" />
<param name="display_count" value="yes" />
<param name="language" value="en-GB" />
</object>
</div>
<script type="text/javascript">
var divElement = document.getElementById('viz1739997278443');
var vizElement = divElement.getElementsByTagName('object')[0];
if (divElement.offsetWidth > 800) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else if (divElement.offsetWidth > 500) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else {
vizElement.style.width = '100%';
vizElement.style.height = '877px';
}
var scriptElement = document.createElement('script');
scriptElement.src = 'https://public.tableau.com/javascripts/api/viz_v1.js';
vizElement.parentNode.insertBefore(scriptElement, vizElement);
</script>
</div>
<!-- Updated Insights: Delivery & Operational Efficiency -->
<div class="insights">
<h3><i class="fa-solid fa-truck-fast"></i> Speed Metrics: The Pulse of Blinkit's Delivery Excellence</h3>
<h4>1. Delivery Time Deviations</h4>
<ul>
<li><strong>On-Time Deliveries:</strong> <strong>1,577</strong> orders met the expected delivery time.</li>
<li><strong>Slightly Delayed Deliveries:</strong> <strong>529</strong> orders had a minor delay (5–10 mins).</li>
<li><strong>Significantly Delayed Deliveries:</strong> <strong>136</strong> orders experienced a delay of more than 15 minutes.</li>
</ul>
<h4>2. Average Delivery Time Over the Months</h4>
<ul>
<li><strong>Fastest Delivery Month:</strong> June (<strong>3.92</strong> minutes).</li>
<li><strong>Slowest Delivery Month:</strong> November (<strong>5.40</strong> minutes).</li>
<li><strong>Average Delivery Time Variation:</strong>
<ul>
<li>January: <strong>5.01</strong> minutes</li>
<li>February: <strong>4.42</strong> minutes</li>
<li>March: <strong>4.12</strong> minutes</li>
<li>April: <strong>4.07</strong> minutes</li>
<li>May: <strong>4.77</strong> minutes</li>
<li>June: <strong>3.19</strong> minutes</li>
<li>July: <strong>4.23</strong> minutes</li>
<li>August: <strong>4.14</strong> minutes</li>
<li>September: <strong>4.42</strong> minutes</li>
<li>October: <strong>4.50</strong> minutes</li>
<li>November: <strong>5.40</strong> minutes</li>
<li>December: <strong>5.13</strong> minutes</li>
</ul>
</li>
</ul>
<h4>Recommendations for Operational Efficiency</h4>
<ul>
<li><strong>Reduce Slight & Significant Delivery Delays:</strong>
<ul>
<li>Optimize delivery partner routing algorithms to minimize last-mile inefficiencies.</li>
<li>Improve warehouse-to-dispatch turnaround times.</li>
</ul>
</li>
<li><strong>Address Peak-Season Delays:</strong>
<ul>
<li>December and October have the slowest delivery times, requiring temporary staffing increases and logistics improvements.</li>
<li>Implement predictive demand forecasting to manage workloads better.</li>
</ul>
</li>
<li><strong>Improve Efficiency During Low-Performance Months:</strong>
<ul>
<li>Increase fleet capacity during high-demand months like November and December.</li>
<li>Leverage AI-driven route optimization to improve consistency.</li>
</ul>
</li>
<li><strong>Enhance Customer Satisfaction Metrics:</strong>
<ul>
<li>Notify customers about potential delays proactively to reduce complaints.</li>
<li>Introduce an express delivery option for high-value customers.</li>
</ul>
</li>
</ul>
</div>
</section>
<!-- Inventory & Product Performance -->
<section id="inventory" class="section">
<h2><i class="fa-solid fa-boxes-stacked"></i> Inventory & Product Performance</h2>
<!-- Visualization: Inventory Dashboard -->
<div class="visualization">
<div class="tableauPlaceholder" id="viz1739997289650" style="position: relative">
<noscript>
<a href="#">
<img alt="Inventory & Product Performance" src="https://public.tableau.com/static/images/In/InventoryandProductPerformance/InventoryProductPerformance/1_rss.png" style="border: none" />
</a>
</noscript>
<object class="tableauViz" style="display:none;">
<param name="host_url" value="https%3A%2F%2Fpublic.tableau.com%2F" />
<param name="embed_code_version" value="3" />
<param name="site_root" value="" />
<param name="name" value="InventoryandProductPerformance/InventoryProductPerformance" />
<param name="tabs" value="no" />
<param name="toolbar" value="yes" />
<param name="static_image" value="https://public.tableau.com/static/images/In/InventoryandProductPerformance/InventoryProductPerformance/1.png" />
<param name="animate_transition" value="yes" />
<param name="display_static_image" value="yes" />
<param name="display_spinner" value="yes" />
<param name="display_overlay" value="yes" />
<param name="display_count" value="yes" />
<param name="language" value="en-GB" />
</object>
</div>
<script type="text/javascript">
var divElement = document.getElementById('viz1739997289650');
var vizElement = divElement.getElementsByTagName('object')[0];
if (divElement.offsetWidth > 800) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else if (divElement.offsetWidth > 500) {
vizElement.style.width = '1000px';
vizElement.style.height = '827px';
} else {
vizElement.style.width = '100%';
vizElement.style.height = '1377px';
}
var scriptElement = document.createElement('script');
scriptElement.src = 'https://public.tableau.com/javascripts/api/viz_v1.js';
vizElement.parentNode.insertBefore(scriptElement, vizElement);
</script>
</div>