-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathet HEAD~
More file actions
1983 lines (1322 loc) · 58.3 KB
/
et HEAD~
File metadata and controls
1983 lines (1322 loc) · 58.3 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
[33mcommit 89e23df631dd3b74f6bf18a19d070a9f3104a86a[m[33m ([m[1;36mHEAD -> [m[1;32mmain[m[33m, [m[1;31morigin/main[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Wed Oct 23 19:41:03 2024 +0200
chore: added redirecrs in netlify
[33mcommit 44bfac5892cc5a226376e45c53b17cbc9d9312df[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Wed Oct 23 18:46:51 2024 +0200
chore: ad seo to home
[33mcommit 59f1082a13282ecfcc231826d0fdaaf81d13347c[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Wed Oct 23 17:51:51 2024 +0200
fix: handle mismatch between cms and cryptomap db cities names
[33mcommit e6a13d74e9193e12c54cfe17ef4d73e6cc68ba26[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Wed Oct 23 13:40:55 2024 +0200
chore: trigger deployments
[33mcommit 1822e16a1a75c7fd15a259dc0f854444d42fa049[m
Merge: 29d71c0 6a61390
Author: Max <maximogarciamtnez@gmail.com>
Date: Wed Oct 23 13:25:36 2024 +0200
Merge pull request #14 from cryptocity-network/onmax/pt-language
[33mcommit 29d71c0b0550e92c524cab5df3b845b8f79d3735[m
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Tue Oct 22 10:00:00 2024 +0100
Update README.md
[33mcommit d549c2c0642a1560495a8eb5d3a7f41b2d9ceba8[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Oct 22 09:32:53 2024 +0100
Fix network localisation bug
[33mcommit 6a61390c00679c2c6fdb47ffde2e2a2de0f4e3b1[m[33m ([m[1;31morigin/onmax/pt-language[m[33m, [m[1;32monmax/pt-language[m[33m)[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Tue Oct 22 10:07:35 2024 +0200
chore: add portuguese
[33mcommit e327da750f5dd8c606a6330244a3443850bf71c3[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Oct 21 17:23:13 2024 +0100
Update public icons
[33mcommit 8822db5457d683164ff1cf35449fea6253e3cf6f[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Oct 21 15:40:57 2024 +0100
Fix: map location card
[33mcommit 6a3a258665d93b955892b08c6a8609f98049dfd4[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Mon Oct 21 13:51:52 2024 +0200
chore: remove photos from google and use url
[33mcommit 51ea823069eff143760d420de7dec1ea6b4fa5ec[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Oct 21 09:19:31 2024 +0100
Update global page title
[33mcommit e2c0b16eadadfe9aed872af4fedb1d09dacdc14c[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Fri Oct 18 15:20:40 2024 +0200
chore: fix sticker image path
[33mcommit a08897d29939a4c48e832008ed0bdf86a5f7dc24[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Fri Oct 18 15:20:30 2024 +0200
feat: new event card design
[33mcommit 3912681ef6d6dd73192a2e10bcb79e32a1e5b186[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Fri Oct 18 15:02:26 2024 +0200
lint
[33mcommit 27d262fec1ec2890f12725cb180117e77cbba106[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Oct 18 13:21:59 2024 +0100
fix: order events by date
[33mcommit a03eda6023becca8f027d8ca78514bee9849daa6[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Oct 8 10:07:55 2024 +0100
Add global events options
[33mcommit 64c74b43fb36e4615834ff5ec47bee1441274afc[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Oct 8 09:33:36 2024 +0100
Fix: mismatched city images
[33mcommit 0c363aef5b8628e18b69bb61bd5713f36738ee74[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Oct 8 09:19:49 2024 +0100
Fix navigation error
[33mcommit 364b6e29bacd70396f07588c3900327bcc1879c5[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 10 08:50:10 2024 +0100
fix: imprint linking
[33mcommit 395b6e227977a4096f84318fac8fdb896f76552f[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 10 08:44:29 2024 +0100
update german requests
[33mcommit 16e73034a7b0bf07d77e46694682cd49fca4306e[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 10 08:36:11 2024 +0100
Update Haftungsausschluss.js
[33mcommit 4a55a09cb10de8eb5f1ddf2972af177ce5f14722[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Sep 9 16:12:37 2024 +0100
Update file import
[33mcommit 5df601adedff2cfb53343dfd478e2a58cd8d5573[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Sep 9 15:03:11 2024 +0100
Fix: filename error
[33mcommit 38622b3be8befd0b87e957eaac2e90083f046375[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Sep 9 13:54:41 2024 +0100
Update t and c link
[33mcommit dfb45555aa5c1bd736f9242d495bdb75c9558594[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Sep 5 17:00:17 2024 +0100
Fix: slovenia flag code
[33mcommit 741376ec6940026a4132cee38fe94b08a9deef0d[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Sep 5 12:46:19 2024 +0100
hotfix: add slovenian translation query
[33mcommit 6e61bd36a0b2a04531cdf500aa56843fa7138932[m
Merge: 237635c 1c56138
Author: Sören Schwert <hello@soerenschwert.de>
Date: Thu Sep 5 13:26:58 2024 +0200
Merge pull request #13 from cryptocity-network/fix/default-region-loacles-in-env
Add processing for region locales env
[33mcommit 1c56138e6d5cae0f64e6de70b405b30891f99675[m
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Thu Sep 5 10:47:49 2024 +0100
Update nuxt.config.ts
Co-authored-by: Sören Schwert <hello@soerenschwert.de>
[33mcommit 3a8787feefd6cc9c0e5beeaaaca25d1220a525a1[m
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Thu Sep 5 10:47:43 2024 +0100
Update nuxt.config.ts
Co-authored-by: Sören Schwert <hello@soerenschwert.de>
[33mcommit 5d8b221e4258787377c2975316a4584f24d1fca9[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Sep 5 09:34:10 2024 +0100
Add processing for region locales env
[33mcommit 237635cf5511d71849b8f372d2255af49ccd20b9[m
Merge: 738c867 7b36eaf
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Tue Sep 3 14:33:59 2024 +0100
Merge pull request #12 from cryptocity-network/feature/flag-icons-on-news-cards
Add flag icons on news cards
[33mcommit 7b36eafb57d52e3fe1910d59d0309be9237a00c8[m[33m ([m[1;31morigin/feature/flag-icons-on-news-cards[m[33m)[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 3 11:12:47 2024 +0100
Fix: label styling
[33mcommit c44d0af3e7791694d54335421dba2b0e97e2e487[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 3 10:39:37 2024 +0100
Add flag icons on news cards
[33mcommit 738c8671f03a66198c059f0d7029890e8dae1a0c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Sep 3 09:42:43 2024 +0100
update: reposition language selectors
[33mcommit 9153888fbb8d46333e00e39a2c97f3a84fdb4a22[m
Merge: aace15d edb3887
Author: Max <maximogarciamtnez@gmail.com>
Date: Mon Sep 2 15:42:35 2024 +0200
Merge pull request #11 from cryptocity-network/onmax/locations-pagination
feat: use pagination in locations
[33mcommit edb38879ca870076d3b3430ec5f9ea949dd22ff0[m[33m ([m[1;31morigin/onmax/locations-pagination[m[33m, [m[1;32monmax/locations-pagination[m[33m)[m
Author: onmax <maximogarciamtnez@gmail.com>
Date: Tue Aug 20 11:23:41 2024 +0200
feat: use pagination in locations
[33mcommit aace15d38e1ba2c8baa402e1c4fa8f3b5e687ceb[m
Merge: 79a3299 d53d222
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Aug 14 18:52:43 2024 +0100
Merge branch 'main' of https://github.com/cryptocity-network/cryptocity
[33mcommit 79a32991aaa4d32812bb421432e7e388d587450d[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Aug 14 18:52:40 2024 +0100
fix: impressum query issue
[33mcommit d52180be2109f3501b443c0e82ce0e4ee872bb39[m
Merge: 8a1e6a6 fd70a13
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Aug 14 18:52:10 2024 +0100
Merge branch 'main' of https://github.com/cryptocity-network/cryptocity
[33mcommit d53d2229b4229f635b701dc4faa7657eef84675d[m
Author: Sören <hello@soerenschwert.de>
Date: Wed Aug 14 14:53:15 2024 +0200
Generate redirects from an environment variable
Used for redirecting city domains (which point to the same Netlify deployment) to their city in the country domain instead, to not have duplicate content under multiple domains.
[skip ci]
[33mcommit fd70a13ab1b6d9113a8a3e1a53669ceaa1f923b6[m
Author: Sören <hello@soerenschwert.de>
Date: Wed Aug 14 15:07:49 2024 +0200
Add _redirects file
Used for redirecting city domains (which point to the same Netlify deployment) to their city in the country domain instead, to not have duplicate content under multiple domains.
[skip ci]
[33mcommit 8a1e6a6b42f5eb10f34baabc8accb73b0f990d88[m
Author: Sören <hello@soerenschwert.de>
Date: Wed Aug 14 15:07:49 2024 +0200
Add _redirects file
Used for redirecting city domains (which point to the same Netlify deployment) to their city in the country domain instead, to not have duplicate content under multiple domains.
[skip ci]
[33mcommit 99622cd334e7ccf39802a860500675747966e575[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Aug 14 08:18:52 2024 +0100
fix: broken icon link
[33mcommit ea95f131c76cdb37d2beeb72c701111b29f7162c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Aug 8 15:29:54 2024 +0100
Add tooltip to payment table
[33mcommit 63da98570ef4e8cff0fc3166409db5f7224dcbe8[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Aug 8 10:43:12 2024 +0100
Add french and estonian locales
[33mcommit 95e9703c0a59de1936e4107b5dfb4065e9e6866f[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Aug 8 09:49:21 2024 +0100
Remove console.log
[33mcommit b9fdd3780f68e8df4f579fdd7d55aaa821be9040[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Aug 8 09:48:50 2024 +0100
Clean up variable names
[33mcommit d9ae395bec672a3069124c3adc678cb106dc6dac[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Aug 8 09:15:02 2024 +0100
Update map buisness stickers
[33mcommit c7c11035a5b3f3bd5b26be9010583bdd6ebe7ef3[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Aug 6 10:10:41 2024 +0100
Update footer logos
[33mcommit 44bf82f57919d5293b843ec82882943b483557b4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 15:57:00 2024 +0100
Fix: homepage grid spacing
[33mcommit 6483b6296dd7c112256316b6dcc0ae26f6343fa4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 11:04:11 2024 +0100
Update firefox city card bug
[33mcommit aea1b817ce72983cf0d6baee506936177f84a343[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 10:31:05 2024 +0100
Remove image hero on about page
[33mcommit 2340b66c4680cbe889f810648ec9ba9d38fe1330[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 10:17:56 2024 +0100
spacing fix - about page
[33mcommit a5b0e5a1b27e7cc9610f60585fa86cef2b6fe6e4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 10:16:42 2024 +0100
Update city carousel on about page
[33mcommit a9a0b0d777a2551364d7b597719e69154ab3c4a4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Aug 5 10:02:59 2024 +0100
Fix carousel video player issue
[33mcommit f0977c5af394ed3abe588848c78275fcf194799c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 26 13:14:26 2024 +0100
Add tm to global logo
[33mcommit d6117069c5a5ad816e35ce281ab388c00c0adc57[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 26 13:03:04 2024 +0100
Updates
[33mcommit 6e75e9a1309127c63f543bf5024a66ef50370e40[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 22 13:20:27 2024 +0100
Update city slug logic
[33mcommit 3c4246a62e8b6cc62a0121fe94c90194a7be0630[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 19 12:04:40 2024 +0100
Remove old tiltedVideo component
[33mcommit a2653cf1cd1b9ff12171143c67408adc7f4f36c6[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 19 11:59:29 2024 +0100
fix spacing error
[33mcommit cf3c09a25a2c19997110ca2e423b6f28ae322f73[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 19 11:51:10 2024 +0100
Create youtube video component
[33mcommit 76c4c257c9f567ad7a74ab97ff304b9870f378ed[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Jul 16 08:29:25 2024 +0100
Update currency hero labels to coin names
[33mcommit 4a5527f3a56eba78ebaf772a8432838308357ba1[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 15 15:33:02 2024 +0100
Add trademark option
[33mcommit 9ddbf4df8739e93f9c3615a6a23cfcdd76f19cf6[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 15 15:10:51 2024 +0100
Update registered trademark logic + global titles
[33mcommit 24821006e188895a053b231e1085b2cc8081e059[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 12 11:56:28 2024 +0100
Update animated city hero
[33mcommit 24eeefa9369b5777dd13d464922f03b0b247f7e4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Jul 10 13:22:25 2024 +0100
bugfix/coin-cards-array-fix
[33mcommit c220a2db8ba44d36242d6e54d89cc552acf1ac4a[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Jul 10 13:18:38 2024 +0100
Update option table currencies to logos
[33mcommit 161883412e91faf611bc8e1cf1e5e091aeaa6942[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Jul 10 12:47:26 2024 +0100
bugfix: remove one element from coin cards
[33mcommit 6e76cebe86957d99f42dc90f173a4f54bbc61836[m
Merge: 519b41b aff0530
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Mon Jul 8 11:13:16 2024 +0100
Merge pull request #9 from cryptocity-network/feature/payment-options-table
Feature/payment options table
[33mcommit aff0530c9e2f5e5d1674f1d708f23b8474f67e68[m[33m ([m[1;31morigin/feature/payment-options-table[m[33m)[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 8 11:10:54 2024 +0100
Add footnotes
[33mcommit aa144ce2515501fd17714d8387363a68fba9243b[m
Merge: 8938681 519b41b
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 8 08:32:48 2024 +0100
Merge branch 'main' into feature/payment-options-table
[33mcommit 8938681891955f032480ed560683a992f3f7daa8[m
Merge: 238b993 a113813
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 8 08:31:17 2024 +0100
Merge branch 'main' into feature/payment-options-table
[33mcommit 519b41bf1273320a00c48d8411818d7220b86be4[m
Merge: a113813 9dfd949
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Mon Jul 8 08:20:10 2024 +0100
Merge pull request #8 from cryptocity-network/feature/beginners-hero-cards
Add coin cards to beginner page hero
[33mcommit 9dfd949626e052690fcfa8ebf5eac57fd1f0c0a2[m[33m ([m[1;31morigin/feature/beginners-hero-cards[m[33m)[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Jul 8 08:18:57 2024 +0100
Hook up to api + responsiveness
[33mcommit a1138136b71c173dceb8d5d88f089ee145a15684[m
Merge: 43b5a7a 0010f8d
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Fri Jul 5 09:52:09 2024 +0100
Merge pull request #7 from cryptocity-network/update/add-payment-providers-to-footer
Update/add payment providers to footer
[33mcommit 0010f8d2f9a66e77c394a7de1dadd9def4d0b83c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 5 09:41:40 2024 +0100
Update design for current state of content
[33mcommit 238b993ebe485ff8786c41cd39ca37de1a42b630[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Jul 5 09:27:33 2024 +0100
Add CMS implementation + fix responsiveness
[33mcommit 74f39eb2ce787cb3be432dd31ef8af94c0f81396[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Jul 4 14:18:36 2024 +0100
Base functionality
New block component added
Tested in situ within merchants page
TBD: decide on best datoCMS implementation
[33mcommit 5873e886b6932c0834ce9316bde8ef2f0d707bf7[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Jul 4 11:47:14 2024 +0100
Add payment providers
- Added payment providers section
- Improve responsive breakpoints
[33mcommit 43b5a7a818a2b711f679f21ab71f3840f1981004[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Jul 4 11:25:18 2024 +0100
Update map location carousel
- Add sticker and bg image to 'add you business' card.
- Implement loader as there is no indication of locations loading at present
[33mcommit 9a5ff9ee8a923139299409890b689b3038360afc[m
Merge: 41200f1 372d48c
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Tue Jun 18 10:35:47 2024 +0100
Merge pull request #5 from cryptocity-network/soeren/locations
Fetch city locations only once per website visit
[33mcommit 372d48cf4eb9c8c45e345232d4fdc1b032450928[m
Author: Sören <hello@soerenschwert.de>
Date: Tue Jun 18 11:03:40 2024 +0300
Fetch city locations only once per website visit
- Centralize location fetching in the store, deduplicating API requests, both in code and in network requests
- Fix filtered location requests not overwriting previous non-filtered requests: When visiting the main page, the locations for Mannheim were loaded without being filtered to "enabled=true". That then set the first array entry with all locations. When then navigating to Mannheim's page, locations were fetched again, but this time filtered to "enabled=true" and added to the store's array. But when querying the locations for a city from the store, only the first array item matching the city name was returned, which was still the unfiltered list of locations.
- Also enable devtools in development (gives you hydration and props warnings in console)
- Use new `only_enabled=1` filter added to the Supabase function for getting city locations
[33mcommit 41200f1b911dac1ead684a6bc9775f14dc1130bb[m
Author: Sören <hello@soerenschwert.de>
Date: Thu May 23 20:38:52 2024 +0200
Add @mux/mux-player dependency, as it is needed by vue-datocms when building for netlify_edge
[33mcommit e4ee784f972989cbada4104c96dd8d97a8540418[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed May 15 14:20:15 2024 +0100
Filter enabled field on map locations
[33mcommit 24265fe8671f54b790237e23f32d776cffc26245[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri May 10 11:20:08 2024 +0100
Update about us carousel to show regions
[33mcommit e7cd2a1f8ca7300628edafd525d0c56ce75fd1ae[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed May 8 09:03:32 2024 +0100
Update all
[33mcommit ef3bb7e6e0367ddb27c9b4277613e868eeb2403b[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue May 7 10:38:54 2024 +0100
mobile height adjustment
[33mcommit b6beacfc8daeb2347288ea51d9e87c38063ec0e2[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue May 7 10:29:32 2024 +0100
Update global page
[33mcommit ecdc5096054ac90c4108593f4e91470333838d42[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 23 08:30:58 2024 +0100
Update Map text
[33mcommit f579d8aaf3842928d93e903ec27e104c5a11a06b[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 22 13:54:12 2024 +0100
Update buisness
[33mcommit 232ad3c26f0b9c6037eeb3435db379f7786a8214[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 22 11:18:29 2024 +0100
Update news and rossman
[33mcommit 724e7aeacac70cdc6bc61cd838e8f9a2fafd1024[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Apr 19 13:01:50 2024 +0100
Add GA
[33mcommit 4c9263a8522b779c152d8ed15bfd82effe0f79e4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Apr 18 12:04:39 2024 +0100
redirect /home on region sites
[33mcommit 301ff3d0caef8011e01f5a4ab3b602fff30e75a7[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Apr 18 12:02:36 2024 +0100
Global page updates & video covers
[33mcommit 91dc03aed9c077613b895cc77b8a958fab180224[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Apr 17 18:36:47 2024 +0100
MAJOR REFACTOR
i18n introduced along with new routing methodoloy.
Also includes some performance improving changes
[33mcommit 66f04af9155b58d0d6f7c84f0e62308edbc80c0c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 16 08:09:29 2024 +0100
Update or case state
[33mcommit 1eb5f339bdea34700d3d758eaef8a9a5d0bf08e4[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 15 16:24:51 2024 +0100
Update to structured
[33mcommit b15ee3af484e72c0a6176071038550d1f83ca51b[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 15 15:25:37 2024 +0100
update structured text linking
[33mcommit 17a4681e60b9f897753d824012d1a0d676b5f98f[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Apr 11 09:33:05 2024 +0100
Update PartnerLogo.vue
[33mcommit 033ce0f67f0f257f408974cc18c10f0a800f4baf[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 9 13:55:18 2024 +0100
Add link to haftung
[33mcommit cc205b55daad70de82ab5614a26b869937096dd9[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 8 12:39:19 2024 +0100
Update sizes
[33mcommit 228c78ae850fd899dbc3f0ede47f445e9b0a1afa[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Apr 8 09:33:17 2024 +0100
Update impressum padding
[33mcommit 79b391c426c072efea71c6eff1e322e87a56395d[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Apr 4 09:36:10 2024 +0100
Update registered logo position for FF
[33mcommit fa7af4f13cf3a28226f752db6ad91bda4beaca93[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 2 08:26:45 2024 +0100
Update gmaps
[33mcommit b5d44a435deca835baa4653e1e4e2b27b92cdb29[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 2 08:16:33 2024 +0100
update
[33mcommit c807f24182d45e4773616b08420a3c4279082243[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Apr 2 07:25:07 2024 +0100
Update news page styling
[33mcommit 4bca701ea79079b987660d27e20938cb8afc6722[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Mar 25 10:27:04 2024 +0000
Fix public key issue
[33mcommit 9c22b37cac215fd413e7d6e27bd4590a89e6156f[m
Merge: ac26380 ed81032
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Mar 25 10:26:49 2024 +0000
Merge branch 'feature/add-news-page'
[33mcommit ac26380d751f7e826d47f8cc25731f5e62db0e29[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Mar 25 10:07:51 2024 +0000
Add i18n location based translations
[33mcommit bd51fb33a94e53103db7e95a46f76b8884ab39aa[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Mar 20 12:13:34 2024 +0000
Fix env variables
[33mcommit 5cb4e44516d082e7339914ad990ec3dc69dd535d[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Mar 20 11:19:18 2024 +0000
Update env settings
[33mcommit 08445b7dcf33c750b173c2bc42ad2e583ef70926[m
Merge: b95b7d6 5f1b70f
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Wed Mar 20 11:13:42 2024 +0000
Merge pull request #4 from overnice/feature/nimiq-locations
Feature/nimiq locations
[33mcommit 5f1b70f09a63083acf26626bd62ba3a95fe052b8[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Mar 20 10:59:23 2024 +0000
Fix event carousel overflow
[33mcommit ed81032842808e6e8a5abe52f3995cfb07cd2cfe[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Mar 19 12:36:30 2024 +0000
Localisation flag fix
[33mcommit 109b2ae91f8c6442b4c40574d49af0fd2f21b9d6[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Mar 19 11:28:16 2024 +0000
Add featured article to news page
[33mcommit 5191147ab75b887f48f43417de7f794ffd6598f1[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Mar 19 10:13:45 2024 +0000
news page rerouting with localisation
[33mcommit 1ce843b0ed36244ff5a3b8bd97a36fdb829d1cc0[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Mar 18 16:10:18 2024 +0000
Create display logic for news articles
[33mcommit b95b7d6e4ee5006fb0cccf96bcb46be31cceec00[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Mar 18 08:28:16 2024 +0000
Split footer into Germany/Rest of world
[33mcommit b4cc94fc53b2ac1bd4ce5e0fa5461607c3b0cecd[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Mar 14 13:47:32 2024 +0000
Remove footer on global page
[33mcommit ee6b89313594a0cf59156b14476a028a58adbd87[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Mar 14 13:39:36 2024 +0000
add all news page
[33mcommit 3cce7caa110fbff3b8a634eb5fe08a3f068db819[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Mar 14 12:10:31 2024 +0000
Add individual news pages
[33mcommit 36a64cd2ec2a6a0cc0b885b08caf5651ee1c91a8[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Thu Feb 29 14:30:41 2024 +0000
Event card images and adress added
[33mcommit 1e0501e208a384f46cd8c5d3a941618f1ba94062[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 28 15:33:11 2024 +0000
Add new carousel and star component
[33mcommit 89f984b8b782d15359d74cd40606d5071b8944d6[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 28 10:20:01 2024 +0000
Add locations to grid card
[33mcommit 027e6c71a8446927db0da736830c710bff1c1a5c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 21 12:25:20 2024 +0000
Lazy load iframes
[33mcommit 82b5eee14293da565b9f8cfdf8e9d5591f5f68f3[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 21 12:15:31 2024 +0000
Remove unused css and defer iubenda
[33mcommit 4c30c3a1ff8e7fe1892d9688d2919873677847bf[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 21 11:46:30 2024 +0000
Lazy load contact form
[33mcommit 7322d6120ba1541fcd70b56385f398ec886755a9[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 21 11:10:11 2024 +0000
Increase hero fetch priorities
[33mcommit 0759d992626032ad693f780c5673832123fbbb50[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Wed Feb 21 10:41:33 2024 +0000
Update image rendering
[33mcommit 05b1d03f35689da8f998f92960874981fa4e4f30[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 16:38:02 2024 +0000
Re add alt
[33mcommit b155e5e4ad3c901093d8f80d0721198b390845f8[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 16:22:54 2024 +0000
Fix global page name
[33mcommit 2e8d94972fa4d0a7174b5d68149f9dc437335c58[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 16:13:53 2024 +0000
fix: stop flash on locale change
[33mcommit 50b853ef7e27d5498b4393640145081bf5f1b78e[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 15:39:54 2024 +0000
Tweaking padding and error checking
[33mcommit b01156b200c19a18221225426c3106a982d61b50[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 14:25:37 2024 +0000
fix: add checks for locales
[33mcommit 2a3a06527f108d08667723f710a327c16c6468e9[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 13:55:02 2024 +0000
Reinstantiate key
[33mcommit 9be708447c34fd781703e95b21556c6a4f6a4c15[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 13:50:02 2024 +0000
SSR rerouting fix
[33mcommit b4afec78970d04d23c7c04f6892f9f502a22b9cb[m
Merge: 9135f36 beb17a5
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 12:45:01 2024 +0000
Merge branch 'main' of https://github.com/overnice/cryptocity-nuxt
[33mcommit 9135f363d53469bb1bf9a545086d501fc1cd8942[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 12:10:38 2024 +0000
Spacing updates
[33mcommit beb17a5a20cb55f3aa783a1bf15712145553ef92[m
Merge: 8f5c8a0 6906d9d
Author: Jon Snow <47143928+therealJonSnow@users.noreply.github.com>
Date: Tue Feb 20 11:49:07 2024 +0000
Merge pull request #2 from overnice/feature/enable-ssr
Enable SSR
[33mcommit 6906d9dd9450d7e80f11fa7934654a7d8d2bb2c2[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 11:46:38 2024 +0000
update index meta
[33mcommit f28058071e0e8aff161b4eaa29a703b09680d82a[m
Merge: a312f37 8f5c8a0
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 11:33:22 2024 +0000
Merge branch 'main' into feature/enable-ssr
[33mcommit 8f5c8a081c4a8bdfade795a61e5d63c4372deaa9[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 11:21:01 2024 +0000
fix: add twitter card
[33mcommit 488d09fa55b59846344462eca7559baf705c8193[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 11:20:02 2024 +0000
SEO Updates
[33mcommit 99ab2e2184ce789f988321a6a1e76c10b706140a[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 09:58:17 2024 +0000
fix: media carousel sizing
[33mcommit d54452353c8edf2f0f06e3f886afaf90965e323b[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 09:45:22 2024 +0000
fix: add registered trademark to logos
[33mcommit 0778fcb0f9ceff942ea8dfd4b6c7852e1de1569c[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 09:31:03 2024 +0000
fix: accessibility improvements
[33mcommit cf8c483e7b88a1ed49c68424e9d8bd3d56031ce5[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Tue Feb 20 08:51:40 2024 +0000
fix: update h1
[33mcommit a312f370de4a67afbd55a38188de4e532ee7288d[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Feb 19 22:45:18 2024 +0000
Enable SSR
Update setNavigation call to utilise useAsyncData. Current issue with SSR only rendering the'default' language
[33mcommit fe8c612ef2fb91a666d33149619f475f06917abe[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Feb 19 09:41:44 2024 +0000
Update Readme
[33mcommit 9e9d05931e5c86bd84f2f24e2e7fa3e69ab5bb82[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Feb 19 09:33:57 2024 +0000
Update Readme
[33mcommit e78ab482d136beb5e3c4d06689d163ba7ff8e5d0[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Mon Feb 19 09:05:52 2024 +0000
Add state to regions
[33mcommit da2e5ec2b43ed518058f37e8e3260264b23ec84a[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Sun Feb 18 21:05:23 2024 +0000
Allow draft pages to be viewed and fix error message
[33mcommit 25f53d6c68d9df6c7fde83c298586797bdbf13fa[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Sun Feb 18 20:53:46 2024 +0000
Add preview functionality
[33mcommit 51a53d1d2893bf6f84281c44218ae8e00aa07f92[m
Author: Jon Snow <jonny96snow@googlemail.com>
Date: Fri Feb 16 18:41:17 2024 +0000
Feat: add preview env variable