-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathDeveloperLove.astro
More file actions
1228 lines (986 loc) Β· 23.9 KB
/
Copy pathDeveloperLove.astro
File metadata and controls
1228 lines (986 loc) Β· 23.9 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
---
import LoveNote from './LoveNote.astro'
// Add your name and message below!
// Don't know where to begin? Don't worry - we'll help you π
// Follow these steps:
// 1. Highlight and copy lines 18-21 below.
// 2. Paste at the end of the document.
// 3. Replace "EricSimons" with your own GitHub username.
// 4. Replace Eric's message with your own - remember about quotation marks!
// 5. Verify the changes in the Preview window on the right.
// 6. If you're satisfied, in the top-right corner, click on the "Propose changes" button and then "Fork & commit changes". A new browser tab will open.
// 7. Click on the "Create pull request" and...
// CONGRATULATIONS! π₯³ You've edited this file!
---
<LoveNote
githubUsername="EricSimons"
message="This thing is so cool. I love that I can see myself typing live."
/>
<LoveNote
githubUsername="pogromistdev"
message="I β€οΈ love web technologies"
/>
<LoveNote
githubUsername="ihasq"
message="I love this!"
/>
<LoveNote
githubUsername="Orime"
message="Best wishes!"
/>
<LoveNote
githubUsername="LukasErdmanski"
message="Awesome!"
/>
<LoveNote
githubUsername="catafest"
message="My name is Catalin George Festila, is a good idea to use codeflow ..."
/>
<LoveNote
githubUsername="werpoz"
message="Works awesome!π"
/>
<LoveNote
githubUsername="mariosant"
message="This is pretty awesome! Hello from sunny Greece!"
/>
<LoveNote
githubUsername="memcap"
message="This is a test..."
/>
<LoveNote
githubUsername="Gerald-Lofton"
message="StackBlitz is Awesome and CodeFlow is the future! π₯π₯π₯"
/>
<LoveNote
githubUsername="tconley"
message="Who wants to collab on tennis, EDU, or Esports stuff? lezgo"
/>
<LoveNote
githubUsername="malalecherocks"
message="Works awesome yeah!"
/>
<LoveNote
githubUsername="narek1993x"
message="Works awesome!"
/>
<LoveNote
githubUsername="kmal808"
message="Aloha and howzit π€ from Oahu Hawaii πββοΈ"
/>
<LoveNote
githubUsername="louiss0"
message="My name is Shelton Louis and I'm new to Codeflow "
/>
<LoveNote
githubUsername="neotherapper"
message="Hello from Greece"
/>
<LoveNote
githubUsername="seanmodd"
message="My name is Sean S. Modd and I love Codeflow baby"
/>
<LoveNote
githubUsername="danielehrhardt"
message="lol"
/>
<LoveNote
githubUsername="hwndept"
message="Works well even in Samsung Dex mode!! Amazing!"
/>
<LoveNote
githubUsername="bhorsanket1992"
message="Sounds Creazy, Well done team :) !"
/>
<LoveNote
githubUsername="cihad"
message="Love β€"
/>
<LoveNote
githubUsername="splincode"
message="Amazing π"
/>
<LoveNote
githubUsername="lewis-hu"
message="π«π€©ππ«π€©ππ«π€©πβ€β€β€πππ !"
/>
<LoveNote
githubUsername="charanquartz"
message="Hi Cquartz's It's Working!"
/>
<LoveNote
githubUsername="bibisixtynine"
message="π«π€©π wa wa wa so incredible and tasty ! congrats to the Team !"
/>
<LoveNote
githubUsername="alejandronanez"
message="Holy! This is amazing :D"
/>
<LoveNote
githubUsername="glaydston"
message="It's amazing tools to use and work on."
/>
<LoveNote
githubUsername="GrudievG"
message="π₯π Definitely will try to integrate this tool into my everyday workflow"
/>
<LoveNote
githubUsername="cloudbring"
message="Codeflow is the future. Can't believe this is all happening in my browser."
/>
<LoveNote
githubUsername="aether5896"
message="Man this is soo good! I can't wait for webcontainers to come into GA"
/>
<LoveNote
githubUsername="lem6ns"
message="I love Codeflow so much!!"
/>
<LoveNote
githubUsername="atilafassina"
message="This is soooo cooolll!!! β€οΈβπ₯"
/>
<LoveNote
githubUsername="vlechemin"
message="You guys always have been ahead of time, but this is next level!"
/>
<LoveNote
githubUsername="ilteoood"
message="A-M-A-Z-I-N-G"
/>
<LoveNote
githubUsername="jsw"
message="I ABSOLUTELY LOVE IT!!!!! Can't wait till it's made opensource!!!"
/>
<LoveNote
githubUsername="pookiepats"
message="hell yea brother"
/>
<LoveNote
githubUsername="nasso"
message="brilliant β¨ can't wait for vscode settings sync π₯Ί"
/>
<LoveNote
githubUsername="E-rey"
message=" π₯π₯π₯Revolucion es pensamiento critico!!π₯π₯π₯ "
/>
<LoveNote
githubUsername="jesulim"
message="π Hacia el infinito y mas alla!! "
/>
<LoveNote
githubUsername="ndjones"
message="π awesome developer experience * π―"
/>
<LoveNote
githubUsername="KRYSLYNN47"
message="I LOVE THIS CODING WEBSITE "
/>
<LoveNote
githubUsername="KirdesMF"
message="Wow <3"
/>
<LoveNote
githubUsername="Allanjba"
message="I love you all!!"
/>
<LoveNote
githubUsername="k9evin"
message="This is soooo cool! π₯"
/>
<LoveNote
githubUsername="yannbf"
message="Thanks for the demo Sylwia! :D "
/>
<LoveNote
githubUsername="carstenjaksch"
message="π₯"
/>
<LoveNote
githubUsername="pavanrkadave"
message="Omg! This is amazing π€©. Great work Stackblitz team!!"
/>
<LoveNote
githubUsername="NickChasanis"
message=" π―πΆ "
/>
<LoveNote
githubUsername="davidemarcoli"
message="It's amazing!"
/>
<LoveNote
githubUsername="Codefoxy-Github"
message="Great Work! Stackblitz! "
/>
<LoveNote
githubUsername="shakib04"
message="I am missing the old features import from github directly to stackblitz! "
/>
<LoveNote
githubUsername="alan-oliv"
message="Simplicity is the ultimate sophistication. Congrats, Stackblitz! "
/>
<LoveNote
githubUsername="IBMPAY"
message="Love the simplicity, great job!"
/>
<LoveNote
githubUsername="srjsdev"
message="Love the simplicity, great job!"
/>
<LoveNote
githubUsername="atomisadev"
message="Codeflow is really great! This is awesome!"
/>
<LoveNote
githubUsername="dudynets"
message="Looks awesome! Great work!"
/>
<LoveNote
githubUsername="Charca"
message="This is amazing! Congrats to the entire team!"
/>
<LoveNote
githubUsername="V1RE"
message="Webcontainers are awesome"
/>
<LoveNote
githubUsername="florianlouvet"
message="Amazing job guys"
/>
<LoveNote
githubUsername="endocytosis"
message="Codeflow is excellent!"
/>
<LoveNote
githubUsername="DavidDeSloovere"
message="StackBlitz is pushing the industry forward with Codeflow!"
/>
<LoveNote
githubUsername="euljr"
message="This is amazing!"
/>
<LoveNote
githubUsername="Soya-xy"
message="This is so cool! Great tool"
/>
<LoveNote
githubUsername="daniellop1"
message="Hey!"
/>
<LoveNote
githubUsername="quyctd"
message="Hi everyone"
/>
<LoveNote
githubUsername="nutlope"
message="Live collaboration is pretty cool"
/>
<LoveNote
githubUsername="joshgillies"
message="Game changer!!"
/>
<LoveNote
githubUsername="webfansplz"
message="This is sooooo cool π₯π₯π₯"
/>
<LoveNote
githubUsername="znareak"
message="Wow, it's impressive this tools, it will be really useful!"
/>
<LoveNote
githubUsername="slorber"
message="I've been waiting for this for a long time! And you finally built it! Docusaurus users will love it π¦"
/>
<LoveNote
githubUsername="sulco"
message="So excited to see this finally shipped!"
/>
<LoveNote
githubUsername="sylwiavargas"
message="Oh wow! I finally can start talking about it in public! Codeflow has made my work so much easier. Love it."
/>
<LoveNote
githubUsername="fvsch"
message="Just used Codeflow to fix a bug on ilovecodeflow.com. No further questions."
/>
<LoveNote
githubUsername="sylwiavargas"
message="Me again! just used Codeflow to review a PR made from Codeflow by Florens! And now I'm using Web Publisher to edit this page. WOW."
/>
<LoveNote
githubUsername="d3lm"
message="This is so seamless, and it makes editing docs fun again."
/>
<LoveNote
githubUsername="HeyGarrison"
message="Finally, a single file edit view that just works!"
/>
<LoveNote
githubUsername="kwintenp"
message="Finally a tool where I don't have to stash all my local changes to review a PR."
/>
<LoveNote
githubUsername="ggdaltoso"
message="This is so awesome! It is so easy to contribute using Codeflow!"
/>
<LoveNote
githubUsername="ykmsd"
message="Codeflow is live! We hope you will like it as much as we do :)"
/>
<LoveNote
githubUsername="SamVerschueren"
message="Making open source contributions has never been so easy π!"
/>
<LoveNote
githubUsername="purplem1lk"
message="FINALLY a tool that simplifies editing docs and breaking down the barriers of sharing knowledge. Using Codeflow is ezpz π!"
/>
<LoveNote
githubUsername="natemoo-re"
message="WowβCodeflow is a total game-changer. Thanks StackBlitz! π"
/>
<LoveNote
githubUsername="Ekwuno"
message="I like this, I like this very much!! π₯"
/>
<LoveNote
githubUsername="TheTiGuR"
message="Live typing? Suggesting changes? This is awesome! "
/>
<LoveNote
githubUsername="jutanium"
message="Yesss! This is going to be huge for docs"
/>
<LoveNote
githubUsername="frank-weindel"
message="Neato!"
/>
<LoveNote
githubUsername="petermekhaeil"
message="Impressive!"
/>
<LoveNote
githubUsername="SamyzKhalil"
message="This is pretty cool!"
/>
<LoveNote
githubUsername="ni500"
message="π€―π€―π€―π€―π€―π€―"
/>
<LoveNote
githubUsername="alonso9111"
message="This it's great, amazing"
/>
<LoveNote
githubUsername="CroatiaParanoia"
message="That's amazing!!!"
/>
<LoveNote
githubUsername="andres-vizcaino"
message="Me encanta!!"
/>
<LoveNote
githubUsername="manudefrutosvila"
message="waaaaaaaa!!!"
/>
<LoveNote
githubUsername="rosnovsky"
message="Wow, it's pretty cool! π€©"
/>
<LoveNote
githubUsername="Chaitanya71998"
message="cool hearing lots of stuff! :)"
/>
<LoveNote
githubUsername="davidrenne"
message="stackblitz is awesome. Just needs to support go instead of node"
/>
<LoveNote
githubUsername="nocategory"
message="This is π₯π₯π₯π₯π₯"
/>
<LoveNote
githubUsername="ADRlANO"
message="Wow this is great! Congrats to the Stackblitz team for pushing the limits"
/>
<LoveNote
githubUsername="himanshu007-creator"
message="I can see 15 minutes time saved instantly :)"
/>
<LoveNote
githubUsername="CaesarDeveloper"
message="This is a great tool. Love it! :D"
/>
<LoveNote
githubUsername="tylermcginnis"
message="π«Ά"
/>
<LoveNote
githubUsername="rxb3rth"
message="Hi from The Hell"
/>
<LoveNote
githubUsername="aPinix"
message="This is AWESOME! π₯π₯π₯"
/>
<LoveNote
githubUsername="straps"
message="WOW this really works"
/>
<LoveNote
githubUsername="xiaobebe"
message="So amazing! I've thought of countless uses for it!"
/>
<LoveNote
githubUsername="JoaquinGiordano"
message="It's incredible what you're doing! Good job."
/>
<LoveNote
githubUsername="midudev"
message="Me encanta! Vamos miducomunidad! jajaja"
/>
<LoveNote
githubUsername="ennoriel"
message="Awesome π"
/>
<LoveNote
githubUsername="brunocrosier"
message="'Propose changes' button is not visible on mobile :("
/>
<LoveNote
githubUsername="mattmaribojoc"
message="brb playing with Codeflow for the next few hours π"
/>
<LoveNote
githubUsername="puruvj"
message="Love ya Publisher!!!! π"
/>
<LoveNote
githubUsername="tanepiper"
message="This is great, really makes the developer experience π"
/>
<LoveNote
githubUsername="moustaphadev"
message="Love this,the DX is gonna be awesome!"
/>
<LoveNote
githubUsername="marcnicole"
message="super cool!!!! π"
/>
<LoveNote
githubUsername="RafaRemo"
message="Can't wait to start using Codeflow in my day to day workflow!"
/>
<LoveNote
githubUsername="dorwinrin"
message="This is really incredible. Awesome job!! πππ"
/>
<LoveNote
githubUsername="daneroo"
message="Whoa!!!! π"
/>
<LoveNote
githubUsername="bhuynhdev"
message="Such awesome technology. You guys are so so amazing π"
/>
<LoveNote
githubUsername="kevinzunigacuellar"
message="This is magic π¦"
/>
<LoveNote
githubUsername="painWithLazyLoad"
message="this is amazing!"
/>
<LoveNote
githubUsername="linkb15"
message="Awesome stuff"
/>
<LoveNote
githubUsername="hcmlopes"
message="Incredible !!!! π€―"
/>
<LoveNote
githubUsername="Dschungelabenteuer"
message="This looks sooooo great!"
/>
<LoveNote
githubUsername="VictorDuranEM"
message="This is looking amazing!"
/>
<LoveNote
githubUsername="naknode"
message="Very cool to see this. Hello from Vindex!"
/>
<LoveNote
githubUsername="MrSunshyne"
message="Better tooling, literally!"
/>
<LoveNote
githubUsername="didier"
message="Wow, this is just awesome. Great work to the team."
/>
<LoveNote
githubUsername="manudefrutosvila"
message="waaaaaaaa!!!"
/>
<LoveNote
githubUsername="CodeNameGrant"
message="This is going to become an amazing tool for first time contributors"
/>
<LoveNote
githubUsername="matheuscas"
message="WTF!? Mind f****** blowing! Congrats!"
/>
<LoveNote
githubUsername="ackzell"
message="This is extremely cool!!! Mindblowing indeed π"
/>
<LoveNote
githubUsername="Riki1312"
message="Hello World!"
/>
<LoveNote
githubUsername="lindsaykwardell"
message="This is amazing! Great work!"
/>
<LoveNote
githubUsername="dpsthree"
message="Loving the new features. Keep up the great work!"
/>
<LoveNote
githubUsername="didavid61202"
message="This is awesome!!! lovin' it! <3"
/>
<LoveNote
githubUsername="nvh95"
message="Codeflow is π₯"
/>
<LoveNote
githubUsername="Fredkiss3"
message="Love this feature"
/>
<LoveNote
githubUsername="erickssonxd"
message="I am amazed!"
/>
<LoveNote
githubUsername="daniel-fahl"
message="Incredible! I love it, amazing work!!!"
/>
<LoveNote
githubUsername="this-is-allan"
message="magnificent :)"
/>
<LoveNote
githubUsername="alexvcs"
message="This is so slick! Excited to see what impact it makes and how it grows."
/>
<LoveNote
githubUsername="twittwer"
message="Looking forward to try it! π"
/>
<LoveNote
githubUsername="coderdiaz"
message="Looking forward to try it! π"
/>
<LoveNote
githubUsername="fubits1"
message="So impressive! Looking forward to explore https://pr.new/ for docs!"
/>
<LoveNote
githubUsername="Sudeep72"
message="This thing looks cool and great. Lovi'n it! Future is coming up by new cool ideas from StackBlitz! Looki'n forward to try.. Great Work!!"
/>
<LoveNote
githubUsername="harlan-zw"
message="lgtm!"
/>
<LoveNote
githubUsername="huynl-96"
message="Working with docs is now much more easier thanks to Codeflow. Definitely a game-changer π"
/>
<LoveNote
githubUsername="peebeebee"
message="This has serious potential. Keep making the web better!"
/>
<LoveNote
githubUsername="josecarlospsh"
message="π"
/>
<LoveNote
githubUsername="iainsimmons"
message="This is awesome! Looks so seamless and I love the logo/branding!"
/>
<LoveNote
githubUsername="o-az"
message="I love Codeflow, even though it's crashing due to a bug right now which is understandable since it's in Beta. Seriously I'm excited for this <3."
/>
<LoveNote
githubUsername="heriisei"
message="I love how amazing the web ecosystem is."
/>
<LoveNote
githubUsername="alexzhang1030"
message="This is really amazing!"
/>
<LoveNote
githubUsername="fev4"
message="Wow! This is mighty impressive."
/>
<LoveNote
githubUsername="abdul1810"
message="Codeflow is π"
/>
<LoveNote
githubUsername="fmoliveira"
message="Codeflow is awesome, loved the keynote on ViteConf 2022!"
/>
<LoveNote
githubUsername="empz"
message="So excited to try Codeflow at work!"
/>
<LoveNote
githubUsername="apai4"
message="π Codeflow!"
/>
<LoveNote
githubUsername="donmckenna"
message="Game changer. I still can't believe it."
/>
<LoveNote
githubUsername="rofound"
message="Web everything. I really like it."
/>
<LoveNote
githubUsername="kalburgimanjunath"
message="π Codeflow is Awesome ! Congrats to the entire team!"
/>
<LoveNote
githubUsername="mayronH"
message="Impressive, just amazing"
/>
<LoveNote
githubUsername="jeffrey-omega"
message="Thanks to the Stackblitz team for this awesome tool!"
/>
<LoveNote
githubUsername="luanesouza"
message="This is incredible! Congratulations to everyone involved!"
/>
<LoveNote
githubUsername="jonhakr"
message="We live in the future now! π¨βπ»"
/>
<LoveNote
githubUsername="dlvhdr"
message="This is an engineering marvel!"
/>
<LoveNote
githubUsername="umarmuha"
message="Very impressive. Great work!"
/>
<LoveNote
githubUsername="aantipov"
message="This is amazing! Kudos to all who has worked on that project!"
/>
<LoveNote
githubUsername="meenie"
message="Congratulations! Well done to you and your team!!"
/>
<LoveNote
githubUsername="abstractalgo"
message="amazing π right in the CMS' business model"
/>
<LoveNote
githubUsername="Mario-SO"
message="Super cool tech! π¨βπ»π"
/>
<LoveNote
githubUsername="patak-dev"
message="Game changing!"
/>
<LoveNote
githubUsername="aaw3k"
message="Wow, this is amazing :)"
/>
<LoveNote
githubUsername="fknipp"
message="Looks awesome. Looking forward using it in my projects."
/>
<LoveNote
githubUsername="cbleu"
message="Impressive! Great work!"
/>
<LoveNote
githubUsername="SergiuPintilei"
message="Pretty cool if you ask me :D"
/>
<LoveNote
githubUsername="tobiaswutz"
message="Hello :D"
/>
<LoveNote
githubUsername="Nipodemos"
message="Can't believe how simple to use it is, and on top of that is free! Thank you"
/>
<LoveNote
githubUsername="AnnuCode"
message="Looks cool!"
/>
<LoveNote
githubUsername="zksward"
message="Lowering the barrier to entry to building the web"
/>
<LoveNote
githubUsername="0xmetamonkey"
message=" wowwowowowowowowoowow "
/>
<LoveNote
githubUsername="pbsun"
message="Love it! π―"
/>
<LoveNote
githubUsername="TechnologicNick"
message="Hey that's pretty cool"
/>
<LoveNote
githubUsername="xiaoxudong"
message="Love it! π―"
/>
<LoveNote
githubUsername="jakubjirous"
message="Thanks Sylwia for showing this great tool at Next.js Conf 2022!"
/>
<LoveNote
githubUsername="leeight"
message="This is soooo cooolll!!! β€οΈβπ₯"
/>
<LoveNote
githubUsername="sr229"
message="Excited for the future of programming in the browser, keep it up!"
/>
<LoveNote
githubUsername="zonemeen"
message="Looks so cool! π₯"
/>
<LoveNote
githubUsername="johnhwhite"
message="Exciting stuff! Nice work π"/>
<LoveNote
githubUsername="prprnya"
message="Amazing! π"
/>
<LoveNote
githubUsername="dsparkman"
message="The future is almost here"
/>
<LoveNote
githubUsername="lewis-hu"
message="π«π€©ππ«π€©ππ«π€©πβ€β€β€πππ !"
/>
<LoveNote
githubUsername="bibisixtynine"
message="π«π€©π wa wa wa so incredible and tasty ! congrats to the Team !"
/>
<LoveNote
githubUsername="alejandronanez"
message="Holy! This is amazing :D"
/>
<LoveNote
githubUsername="glaydston"
message="It's amazing tools to use and work on."
/>
<LoveNote
githubUsername="GrudievG"
message="π₯π Definitely will try to integrate this tool into my everyday workflow"
/>
<LoveNote
githubUsername="cloudbring"
message="Codeflow is the future. Can't believe this is all happening in my browser."
/>