-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.log
1426 lines (1217 loc) · 133 KB
/
error.log
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
01:09:50 pm [check] Checking files
01:09:51 pm [content] No content directory found. Skipping type generation.
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Footer.astro:13:17 Hint: 'Picture' is declared but its value is never read.
12 import footerHand from "../images/footerHand.png";
13 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
14 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Footer.astro:399:3 Hint: 'Eases' is declared but its value is never read.
398 import { gsap } from "gsap";
399 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Header.astro:17:17 Hint: 'Picture' is declared but its value is never read.
16 import career from "../images/headerCareer.jpg";
17 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
18 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Header.astro:822:3 Hint: 'Eases' is declared but its value is never read.
821 import { ScrollTrigger } from "gsap/ScrollTrigger";
822 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
823 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Header.astro:849:44 Hint: 'e' is declared but its value is never read.
849 el.addEventListener("mouseenter", (e) => {
~
850 gsap.to(image, { autoAlpha: 0.4 });
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Header.astro:853:44 Hint: 'e' is declared but its value is never read.
853 el.addEventListener("mouseleave", (e) => {
~
854 gsap.to(image, { autoAlpha: 0 });
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:2:17 Hint: 'Picture' is declared but its value is never read.
01 ---
02 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
03 import puase from "../images/pauselogo.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:291:38 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
290 {
291 (splitArrays[0] as any).map((clients, index) => (
~~~~~~~
292 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:291:47 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
290 {
291 (splitArrays[0] as any).map((clients, index) => (
~~~~~
292 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:291:47 Hint: 'index' is declared but its value is never read.
290 {
291 (splitArrays[0] as any).map((clients, index) => (
~~~~~
292 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:308:38 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
307 {
308 (splitArrays[1] as any).map((clients, index) => (
~~~~~~~
309 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:308:47 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
307 {
308 (splitArrays[1] as any).map((clients, index) => (
~~~~~
309 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:308:47 Hint: 'index' is declared but its value is never read.
307 {
308 (splitArrays[1] as any).map((clients, index) => (
~~~~~
309 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:325:38 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
324 {
325 (splitArrays[2] as any).map((clients, index) => (
~~~~~~~
326 <div class="imgRow clientArray3">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:325:47 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
324 {
325 (splitArrays[2] as any).map((clients, index) => (
~~~~~
326 <div class="imgRow clientArray3">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:325:47 Hint: 'index' is declared but its value is never read.
324 {
325 (splitArrays[2] as any).map((clients, index) => (
~~~~~
326 <div class="imgRow clientArray3">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:342:38 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
341 {
342 (splitArrays[3] as any).map((clients, index) => (
~~~~~~~
343 <div class="imgRow clientArray4">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:342:47 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
341 {
342 (splitArrays[3] as any).map((clients, index) => (
~~~~~
343 <div class="imgRow clientArray4">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:342:47 Hint: 'index' is declared but its value is never read.
341 {
342 (splitArrays[3] as any).map((clients, index) => (
~~~~~
343 <div class="imgRow clientArray4">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:839:26 Hint: Parameter 'caseStudy' implicitly has an 'any' type, but a better type may be inferred from usage.
838 {
839 entries.items.map((caseStudy, index) => (
~~~~~~~~~
840 <div class="hoverImg moving-text2 ">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:839:37 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
838 {
839 entries.items.map((caseStudy, index) => (
~~~~~
840 <div class="hoverImg moving-text2 ">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:839:37 Hint: 'index' is declared but its value is never read.
838 {
839 entries.items.map((caseStudy, index) => (
~~~~~
840 <div class="hoverImg moving-text2 ">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:1063:35 Hint: Parameter 'clientsTestimonials' implicitly has an 'any' type, but a better type may be inferred from usage.
1062 {
1063 testimonials.items.map((clientsTestimonials, index) => (
~~~~~~~~~~~~~~~~~~~
1064 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:1063:56 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
1062 {
1063 testimonials.items.map((clientsTestimonials, index) => (
~~~~~
1064 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:1063:56 Hint: 'index' is declared but its value is never read.
1062 {
1063 testimonials.items.map((clientsTestimonials, index) => (
~~~~~
1064 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\components\Homepage.astro:1424:11 Hint: 'frameborder' is deprecated.
1423 title="YouTube video player"
1424 frameborder="0"
~~~~~~~~~~~
1425 allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share "
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:5:1 Hint: 'imgTags' is declared but its value is never read.
04 import officeImg from "../images/officeImg.png";
05 import imgTags from "../images/imgTags.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
06 import members1 from "../images/members1.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:7:1 Hint: 'Header' is declared but its value is never read.
06 import members1 from "../images/members1.png";
07 import Header from "../components/Header.astro";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
08 import carousalNext from "../images/carousalNext.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:11:17 Hint: 'Picture' is declared but its value is never read.
10 import { contentfulClient } from "../lib/contentful";
11 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:180:40 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
179 {
180 (splitArrays[0] as any).map((clients, index) => (
~~~~~~~
181 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:180:49 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
179 {
180 (splitArrays[0] as any).map((clients, index) => (
~~~~~
181 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:180:49 Hint: 'index' is declared but its value is never read.
179 {
180 (splitArrays[0] as any).map((clients, index) => (
~~~~~
181 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:198:40 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
197 {
198 (splitArrays[1] as any).map((clients, index) => (
~~~~~~~
199 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:198:49 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
197 {
198 (splitArrays[1] as any).map((clients, index) => (
~~~~~
199 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:198:49 Hint: 'index' is declared but its value is never read.
197 {
198 (splitArrays[1] as any).map((clients, index) => (
~~~~~
199 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:216:40 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
215 {
216 (splitArrays[2] as any).map((clients, index) => (
~~~~~~~
217 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:216:49 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
215 {
216 (splitArrays[2] as any).map((clients, index) => (
~~~~~
217 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:216:49 Hint: 'index' is declared but its value is never read.
215 {
216 (splitArrays[2] as any).map((clients, index) => (
~~~~~
217 <div class="imgRow clientArray1">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:234:40 Hint: Parameter 'clients' implicitly has an 'any' type, but a better type may be inferred from usage.
233 {
234 (splitArrays[3] as any).map((clients, index) => (
~~~~~~~
235 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:234:49 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
233 {
234 (splitArrays[3] as any).map((clients, index) => (
~~~~~
235 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:234:49 Hint: 'index' is declared but its value is never read.
233 {
234 (splitArrays[3] as any).map((clients, index) => (
~~~~~
235 <div class="imgRow clientArray2">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:728:18 Hint: 'TimelineMax' is deprecated.
727 <script>
728 import { gsap, TimelineMax } from "gsap";
~~~~~~~~~~~
729 import Eases from "gsap";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:729:3 Hint: 'Eases' is declared but its value is never read.
728 import { gsap, TimelineMax } from "gsap";
729 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
730 import { ScrollTrigger } from "gsap/ScrollTrigger";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:737:5 Hint: 'Pagination' is declared but its value is never read.
736 Navigation,
737 Pagination,
~~~~~~~~~~
738 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:738:5 Hint: 'EffectCoverflow' is declared but its value is never read.
737 Pagination,
738 EffectCoverflow,
~~~~~~~~~~~~~~~
739 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:739:5 Hint: 'Autoplay' is declared but its value is never read.
738 EffectCoverflow,
739 Autoplay,
~~~~~~~~
740 EffectCreative,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:742:7 Hint: 'x' is declared but its value is never read.
741 } from "swiper";
742 let x = 3;
~
743 var swiper = new Swiper(".mySwiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:743:7 Hint: 'swiper' is declared but its value is never read.
742 let x = 3;
743 var swiper = new Swiper(".mySwiper", {
~~~~~~
744 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:811:16 Hint: 'TimelineMax' is deprecated.
811 let tl = new TimelineMax({});
~~~~~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:813:6 Hint: The signature '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' of 'tl.from' is deprecated.
813 tl.from(" .letter", 1, {
~~~~
814 opacity: "0",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:819:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
818 })
819 .from("#main2", 1, {
~~~~
820 x: "-10%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:825:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
824 })
825 .from("#teamInfo", 1, {
~~~~
826 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:834:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
833 })
834 .from("#teamInfo", 1, {
~~~~
835 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:843:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
842 })
843 .from("#teamInfo", 1, {
~~~~
844 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:852:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
851 })
852 .from("#teamInfo", 1, {
~~~~
853 stagger: 0.8,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:862:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
861 })
862 .from("#teamInfo", 0.7, {
~~~~
863 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:871:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
870 })
871 .from("#teamInfo", 0.7, {
~~~~
872 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:880:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
879 })
880 .from("#teamInfo", 0.7, {
~~~~
881 scrollTrigger: {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:889:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
888 })
889 .from(".numtext-animation", 1, {
~~~~
890 x: "-20%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:899:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
898 })
899 .from(".onlyMob", 1, {
~~~~
900 x: "-20%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:909:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
908 })
909 .from(".clientArray1", 1, {
~~~~
910 x: "-60%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\about-us.astro:919:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): TimelineMax' is deprecated.
918 })
919 .from(".clientArray2", 1, {
~~~~
920 x: "60%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:5:1 Hint: 'viewAwardsBtn' is declared but its value is never read.
04 import hiringImg1 from "../images/hiringImg1.jpg";
05 import viewAwardsBtn from "../images/viewAwardsBtn.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
06 import rotatingView from "../images/rotatingView.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:13:17 Hint: 'Picture' is declared but its value is never read.
12 import awardsNext from "../images/awardsNext.png";
13 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:15:1 Hint: 'gsap' is declared but its value is never read.
15 import { gsap } from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
16 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1206:5 Hint: 'Eases' is declared but its value is never read.
1205 import { ScrollTrigger } from "gsap/ScrollTrigger";
1206 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
1207 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1239:42 Hint: 'e' is declared but its value is never read.
1239 el.addEventListener("mouseenter", (e) => {
~
1240 gsap.to(image, { autoAlpha: 1 });
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1243:42 Hint: 'e' is declared but its value is never read.
1243 el.addEventListener("mouseleave", (e) => {
~
1244 gsap.to(image, { autoAlpha: 0 });
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1255:7 Hint: 'Pagination' is declared but its value is never read.
1254 Navigation,
1255 Pagination,
~~~~~~~~~~
1256 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1256:7 Hint: 'EffectCoverflow' is declared but its value is never read.
1255 Pagination,
1256 EffectCoverflow,
~~~~~~~~~~~~~~~
1257 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1257:7 Hint: 'Autoplay' is declared but its value is never read.
1256 EffectCoverflow,
1257 Autoplay,
~~~~~~~~
1258 EffectCreative,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1260:9 Hint: 'x' is declared but its value is never read.
1259 } from "swiper";
1260 let x = 3;
~
1261 var swiper = new Swiper(".swiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\awards.astro:1261:9 Hint: 'swiper' is declared but its value is never read.
1260 let x = 3;
1261 var swiper = new Swiper(".swiper", {
~~~~~~
1262 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:3:1 Hint: 'blogButton' is declared but its value is never read.
02 import Layout from "../layouts/Layout.astro";
03 import blogButton from "../images/blogButton.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
04 import rotatingBlog from "../images/rotatingBlog.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:8:1 Hint: 'exploreimg1' is declared but its value is never read.
07 import editorImg2 from "../images/editorImg2.png";
08 import exploreimg1 from "../images/exploreimg1.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
09 import blogsCarousel1 from "../images/blogsCarousel1.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:9:1 Hint: 'blogsCarousel1' is declared but its value is never read.
08 import exploreimg1 from "../images/exploreimg1.png";
09 import blogsCarousel1 from "../images/blogsCarousel1.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 import { contentfulClient } from "../lib/contentful";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:12:1 Hint: 'Document' is declared but its value is never read.
11 import { documentToHtmlString } from "@contentful/rich-text-html-renderer";
12 import type { Document } from "@contentful/rich-text-types";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 import yellowGo from "../images/yellowGo2.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:17:17 Hint: 'Picture' is declared but its value is never read.
16 import readMore from "../images/readMore.png";
17 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:19:1 Hint: 'log' is declared but its value is never read.
19 import { log } from "astro/dist/core/logger/core";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:69:32 Hint: Parameter 'blogs' implicitly has an 'any' type, but a better type may be inferred from usage.
68 {
69 entries.items.map((blogs) => (
~~~~~
70 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:260:30 Hint: Parameter 'blogs' implicitly has an 'any' type, but a better type may be inferred from usage.
259 {
260 entries.items.map((blogs) => (
~~~~~
261 <a href={"/blogs/" + blogs.fields.params} aria-label="blogs">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:849:5 Hint: 'Eases' is declared but its value is never read.
848 import { ScrollTrigger } from "gsap/ScrollTrigger";
849 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
850 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:857:7 Hint: 'Pagination' is declared but its value is never read.
856 Navigation,
857 Pagination,
~~~~~~~~~~
858 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:858:7 Hint: 'EffectCoverflow' is declared but its value is never read.
857 Pagination,
858 EffectCoverflow,
~~~~~~~~~~~~~~~
859 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:859:7 Hint: 'Autoplay' is declared but its value is never read.
858 EffectCoverflow,
859 Autoplay,
~~~~~~~~
860 EffectCreative,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:862:9 Hint: 'x' is declared but its value is never read.
861 } from "swiper";
862 let x = 3;
~
863 var swiper = new Swiper(".mySwiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:863:9 Hint: 'swiper' is declared but its value is never read.
862 let x = 3;
863 var swiper = new Swiper(".mySwiper", {
~~~~~~
864 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\blog-gallery.astro:955:8 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
954 })
955 .from(".animate-imgText", 1, {
~~~~
956 x: "-30%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:7:17 Hint: 'Picture' is declared but its value is never read.
06 import positionBtn from "../images/positionBtn.png";
07 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
08 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:676:3 Hint: 'Eases' is declared but its value is never read.
675 import { ScrollTrigger } from "gsap/ScrollTrigger";
676 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
677 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:698:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
697 })
698 .from(".input-group, .textArea, .submitBtn", 1, {
~~~~
699 y: "50%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:702:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
701 })
702 .from(".col1, .col2", 1, {
~~~~
703 y: "50%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:715:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
715 .from(".clan", 1, {
~~~~
716 y: "100%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:726:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
725 })
726 .from(".hand-animate", 1, {
~~~~
727 opacity: 0,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:738:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
738 .from(".hand-animate", 1, {
~~~~
739 x: "+=30",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\contact.astro:751:6 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
750 })
751 .from(".btn-animate", 1, {
~~~~
752 x: "-20%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring-app.astro:5:1 Hint: 'ps' is declared but its value is never read.
04 import applyNow from "../images/applyNow.png";
05 import ps from "../images/ps.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
06 import submitArrow from "../images/submitArrow.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring-app.astro:7:1 Hint: 'log' is declared but its value is never read.
06 import submitArrow from "../images/submitArrow.png";
07 import { log } from "astro/dist/core/logger/core";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
08 //import { Image, Picture } from "@astrojs/image/components";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring-app.astro:8:17 Hint: 'Picture' is declared but its value is never read.
07 import { log } from "astro/dist/core/logger/core";
08 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:3:1 Hint: 'hiringImg1' is declared but its value is never read.
02 import Layout from "../layouts/Layout.astro";
03 import hiringImg1 from "../images/hiringImg1.jpg";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
04 import hiringHeroImg from "../images/hiringHeroImg.jpg";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:14:1 Hint: 'documentToHtmlString' is declared but its value is never read.
13 import { contentfulClient } from "../lib/contentful";
14 import { documentToHtmlString } from "@contentful/rich-text-html-renderer";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 // import jobProfiles from "../components/jobProfiles";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:16:17 Hint: 'Picture' is declared but its value is never read.
15 // import jobProfiles from "../components/jobProfiles";
16 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:18:1 Hint: 'viewOpenPositions' is declared but its value is never read.
18 import viewOpenPositions from "../images/ViewOpenPosition.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 const entries: any = await contentfulClient.getEntries<any>({
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:202:28 Hint: Parameter 'jobProfiles' implicitly has an 'any' type, but a better type may be inferred from usage.
201 {
202 entries.items.map((jobProfiles, index) => (
~~~~~~~~~~~
203 <div
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:202:41 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
201 {
202 entries.items.map((jobProfiles, index) => (
~~~~~
203 <div
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:202:41 Hint: 'index' is declared but its value is never read.
201 {
202 entries.items.map((jobProfiles, index) => (
~~~~~
203 <div
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:757:5 Hint: 'Eases' is declared but its value is never read.
756 import { ScrollTrigger } from "gsap/ScrollTrigger";
757 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
758 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:768:8 Hint: '(targets: TweenTarget, duration: number, vars: TweenVars, position?: Position): Timeline' is deprecated.
767 })
768 .from(".blackTitle-animate", 1, {
~~~~
769 x: "-200%",
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:828:39 Error: Property 'value' does not exist on type 'HTMLElement'.
827 category.addEventListener("change", function () {
828 const selectedOption = category.value.replaceAll(" ", "-").toLowerCase();
~~~~~
829 console.log("Selected option:", selectedOption);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:847:42 Error: Property 'value' does not exist on type 'HTMLElement'.
846 categoryMob.addEventListener("change", function () {
847 const selectedOption = categoryMob.value
~~~~~
848 .replaceAll(" ", "-")
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\hiring.astro:868:42 Error: Property 'value' does not exist on type 'HTMLElement'.
867 locationMob.addEventListener("change", function () {
868 const selectedOption = locationMob.value;
~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\index.astro:2:1 Hint: 'Header' is declared but its value is never read.
01 ---
02 import Header from "../components/Header.astro";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
03 import Footer from "../components/Footer.astro";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\index.astro:3:1 Hint: 'Footer' is declared but its value is never read.
02 import Header from "../components/Header.astro";
03 import Footer from "../components/Footer.astro";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
04 import Homepage from "../components/Homepage.astro";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\index.astro:6:1 Hint: 'SEOMetadata' is declared but its value is never read.
05 import Layout from "../layouts/Layout.astro";
06 import { SEOMetadata } from "astro-seo-metadata";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
07 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:11:17 Hint: 'Picture' is declared but its value is never read.
10 import carousalPrev from "../images/carousalPrev.png";
11 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
12 ---
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:428:3 Hint: 'Eases' is declared but its value is never read.
427 import { ScrollTrigger } from "gsap/ScrollTrigger";
428 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
429 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:449:5 Hint: 'Pagination' is declared but its value is never read.
448 Navigation,
449 Pagination,
~~~~~~~~~~
450 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:450:5 Hint: 'EffectCoverflow' is declared but its value is never read.
449 Pagination,
450 EffectCoverflow,
~~~~~~~~~~~~~~~
451 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:451:5 Hint: 'Autoplay' is declared but its value is never read.
450 EffectCoverflow,
451 Autoplay,
~~~~~~~~
452 EffectCreative,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:454:7 Hint: 'x' is declared but its value is never read.
453 } from "swiper";
454 let x = 3;
~
455 var swiper = new Swiper(".mySwiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:455:7 Hint: 'swiper' is declared but its value is never read.
454 let x = 3;
455 var swiper = new Swiper(".mySwiper", {
~~~~~~
456 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:486:7 Hint: 'y' is declared but its value is never read.
486 let y = 3;
~
487 var swiper2 = new Swiper(".swiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\life-at-iic.astro:487:7 Hint: 'swiper2' is declared but its value is never read.
486 let y = 3;
487 var swiper2 = new Swiper(".swiper", {
~~~~~~~
488 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:4:1 Hint: 'featuredWorksbtn' is declared but its value is never read.
03 import portfolio1 from "../images/portfolio1.jpg";
04 import featuredWorksbtn from "../images/featuredWorksbtn.jpg";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05 import { contentfulClient } from "../lib/contentful";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:7:17 Hint: 'Picture' is declared but its value is never read.
06 import { documentToHtmlString } from "@contentful/rich-text-html-renderer";
07 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
08 const entries: any = await contentfulClient.getEntries<any>({
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:96:30 Hint: Parameter 'caseStudy' implicitly has an 'any' type, but a better type may be inferred from usage.
95 {
96 entries.items.map((caseStudy, index) => (
~~~~~~~~~
97 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:96:41 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
95 {
96 entries.items.map((caseStudy, index) => (
~~~~~
97 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:96:41 Hint: 'index' is declared but its value is never read.
95 {
96 entries.items.map((caseStudy, index) => (
~~~~~
97 <div class="swiper-slide">
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:138:26 Hint: Parameter 'caseStudy' implicitly has an 'any' type, but a better type may be inferred from usage.
137 {
138 entries.items.map((caseStudy, index) => (
~~~~~~~~~
139 <a
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:138:37 Hint: Parameter 'index' implicitly has an 'any' type, but a better type may be inferred from usage.
137 {
138 entries.items.map((caseStudy, index) => (
~~~~~
139 <a
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:351:5 Hint: 'Eases' is declared but its value is never read.
350 import { ScrollTrigger } from "gsap/ScrollTrigger";
351 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
352 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:356:7 Hint: 'Pagination' is declared but its value is never read.
355 Navigation,
356 Pagination,
~~~~~~~~~~
357 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:357:7 Hint: 'EffectCoverflow' is declared but its value is never read.
356 Pagination,
357 EffectCoverflow,
~~~~~~~~~~~~~~~
358 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:361:9 Hint: 'x' is declared but its value is never read.
360 } from "swiper";
361 let x = 3;
~
362 var swiper = new Swiper(".mySwiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\portfolio.astro:362:9 Hint: 'swiper' is declared but its value is never read.
361 let x = 3;
362 var swiper = new Swiper(".mySwiper", {
~~~~~~
363 modules: [Navigation, Autoplay, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:10:1 Hint: 'contentfulClient' is declared but its value is never read.
09 import icon2 from "../images/icon2.png";
10 import { contentfulClient } from "../lib/contentful";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 //import { Image, Picture } from "@astrojs/image/components";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:11:17 Hint: 'Picture' is declared but its value is never read.
10 import { contentfulClient } from "../lib/contentful";
11 //import { Image, Picture } from "@astrojs/image/components";
~~~~~~~
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:501:3 Hint: 'Eases' is declared but its value is never read.
500 import { ScrollTrigger } from "gsap/ScrollTrigger";
501 import Eases from "gsap";
~~~~~~~~~~~~~~~~~~~~~~~~~
502 gsap.registerPlugin(ScrollTrigger);
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:507:5 Hint: 'Pagination' is declared but its value is never read.
506 Navigation,
507 Pagination,
~~~~~~~~~~
508 EffectCoverflow,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:508:5 Hint: 'EffectCoverflow' is declared but its value is never read.
507 Pagination,
508 EffectCoverflow,
~~~~~~~~~~~~~~~
509 Autoplay,
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:512:7 Hint: 'x' is declared but its value is never read.
511 } from "swiper";
512 let x = 3;
~
513 var swiper = new Swiper(".swiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:513:7 Hint: 'swiper' is declared but its value is never read.
512 let x = 3;
513 var swiper = new Swiper(".swiper", {
~~~~~~
514 modules: [Navigation, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:533:7 Hint: 'y' is declared but its value is never read.
533 let y = 3;
~
534 var swiper = new Swiper(".mySwiper", {
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\products.astro:534:7 Hint: 'swiper' is declared but its value is never read.
533 let y = 3;
534 var swiper = new Swiper(".mySwiper", {
~~~~~~
535 modules: [Navigation, Autoplay, EffectCreative],
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\solutions.astro:3:1 Hint: 'Hand_Holding_Smartphone2' is declared but its value is never read.
02 import Layout from "../layouts/Layout.astro";
03 import Hand_Holding_Smartphone2 from "../images/Hand_Holding_Smartphone2.jpg";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
04 import ourSolutionsBtn from "../images/ourSolutionsBtn.png";
01:09:57 pm [diagnostics]
d:\AyushIIC\iiclab\src\pages\solutions.astro:4:1 Hint: 'ourSolutionsBtn' is declared but its value is never read.
03 import Hand_Holding_Smartphone2 from "../images/Hand_Holding_Smartphone2.jpg";
04 import ourSolutionsBtn from "../images/ourSolutionsBtn.png";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
05 import solutionbtn from "../images/solution-rotateBtn.png";