forked from strapi/community-content
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsites.yml
More file actions
1973 lines (1973 loc) · 63.4 KB
/
Copy pathsites.yml
File metadata and controls
1973 lines (1973 loc) · 63.4 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
- title: AmbiSpace
url: https://tryar.apsan.com.np
description: AmbiSpace blends Augmented Reality leveraged from your device for the convenience of online shopping. Our platform invites users to experience products in their own space — lifelike, scale-accurate, and interactive.
categories:
- E-commerce
- Full-stack
- Furnitures & Décor
- AR & 3D model
frontend:
- Next.js
- Tailwind
- GSAP
- Locomotive Scroll
- Framer motion
- AOS
made_by: Apsan
made_by_url: https://apsan.com.np
- title: Star RV
url: https://www.starrv.com/nz
description: Discover Star RV, a website offering luxury motorhome rentals for an unforgettable road trip experience across Australia & New Zealand.
categories:
- Corporate Website
- Travel
frontend:
- Next.js
- Tailwind
- GSAP
- Mux
made_by: Voyage
made_by_url: https://voyage.studio
- title: Liaise Platform
url: https://liaiseplatform.com
description: Ai Tools Hub, Access To Hundreds of AI Tools For Free
categories:
- Artificial Intelligence
- AI
- Tools
- Website
frontend:
- html
- React.js
made_by: Liaise
made_by_url: https://www.liaiseplatform.com
- title: Abhimanyu Garbhsanskar
url: https://garbhsanskar.co.in
description: Event, Workshop, E-commerce, and many more backends with strapi, Website on Next JS, Android & IOS app
categories:
- Workshop Management
- E-commerce
- Event
- Course
frontend:
- Next.js
- React Native
made_by: Gulshan Prajapati
made_by_url: https://www.touchmediaads.com
- title: Ways&Villas
url: https://waysandvillas.com/
description: Ways & Villas is a premier luxury travel concierge providing curated luxury travel experiences in the Maldives
categories:
- Travel Website
frontend:
- Next.js
- TailwindCSS
made_by: Haab Naseem
made_by_url: https://github.com/haabnaseem/
- title: Guus van de Wal
url: https://guusvandewal.nl
description: Strapi Backend for a Next.js website
categories:
- Corporate website
- Developer
- Design
- Full-service
frontend:
- Nuxt.js
- UIkit
made_by: Guus van de Wal
made_by_url: https://guusvandewal.nl
- title: JLOCODES Portfolio
url: https://jlocodes.com
description: Personal Portfolio with Strapi CMS for the content
categories:
- Porfolio
- Freelance Website
frontend:
- Nuxt.js
- TailwindCSS
made_by: John Livee
made_by_url: https://jlocodes.com
- title: Learn Sonos
url: https://learn.sonos.com/
description: Strapi is used to manage Sonos content seamlessly in multiple languages. The content is synchronized forth and back to the Localazy platform.
categories:
- Marketing Site
- Catalog
frontend:
- Nuxt.js
- TailwindCSS
- Localazy
made_by: Pixel Alliance
made_by_url: https://pixelalliance.io/
- title: mutoco
url: https://mutoco.ch/
description: We move. Forward. Companies and brands. We unite the power of design and technology to solve complex problems and to create change.
categories:
- Corporate website
frontend:
- Svelte
made_by: mutoco
made_by_url: https://mutoco.ch/
- title: Blue Flamingos
url: https://blueflamingos.nl
description: Corporate website that fits our brand. Fully search engine optimized, conversion aimed and dynamically built thanks to Strapi.
categories:
- Corporate website
frontend:
- Next.js
- TailwindCSS
made_by: Blue Flamingos
made_by_url: https://blueflamingos.nl
- title: US Fabrics
url: https://www.usfabricsinc.com/
description: Strapi is used to manage all content across the website and mobile app. Strapi is also used to manage all user features such as project binders, product comparison, pdf generation, forms/emails, and more.
categories:
- Corporate website
- Mobile application
- iOS
- Android
frontend:
- Nuxt.js
- TailwindCSS
- Capacitor
made_by: Centogram
made_by_url: https://centogram.com/
- title: Kyaw San Htoo Pharmacy Website
url: https://kyawsanhtoo-pharmacy.vercel.app/
description: It was for a pharmacy called "Kyaw San Htoo" which is located in Pathein, Myanmar(Burma). We made a live website that can browse, order and purchase medicines from it.
categories:
- Pharmacy
- E-commerce
frontend:
- Next.js
made_by: Yan Aung Hein, Aung Pyae Kyaw, Ye Min Htun
made_by_url: https://www.linkedin.com/posts/yanaunghein_frontenddeveloper-uiuxdesign-webdesign-activity-6885930510682587136-R-B7
- title: Confind - Enterprise Search Platform
url: https://confind.nl/
description: This awesome website is using Strapi for managing the content of our Vue.js Marketing website
categories:
- Marketing / Product website
frontend:
- Vue.js
made_by: Smartshore Ability
made_by_url: https://smartshore-ability.nl/
- title: Lag and Log
url: https://lagandlog.com/
description: Grow yourself by writing.
categories:
- Blog
frontend:
- Gatsby
- AWS(s3)
made_by: https://twitter.com/sasicodes
made_by_url: https://twitter.com/sasicodes
- title: IndéX
url: https://www.index-tribu.fr/
description: Help with creation, accounting, insurance, mutual, legal, taxation... benefit from the best services at the best rates.
categories:
- Corporate Website
frontend:
- Angular
- Cloudinary
made_by: PlaceMe SAS
made_by_url: https://www.placeme.io/
- title: Occhiolino Design
url: https://www.occhiolinodesign.com/
description: French eco-friendly furniture store.
categories:
- E-commerce
frontend:
- Angular
- Cloudinary
made_by: PlaceMe SAS
made_by_url: https://www.placeme.io/
- title: PlaceMe SAS
url: https://www.placeme.io/
description: PlaceMe supports your digital projects. His Frontend, Backend, Cloud & DevOps expertise turns an idea into a product.
categories:
- Corporate Website
frontend:
- Angular
- Cloudinary
made_by: PlaceMe SAS
made_by_url: https://www.placeme.io/
- title: AllDadsTalk
url: https://alldadstalk.com
description: Blog webapp made with Strapi, Next.js and Styled Components.
categories:
- Blog
frontend:
- Next.js
- Styled Components
made_by: Justinian Boghici
made_by_url: https://justinian.page
- title: Caroster
url: https://caroster.io/
description: Carpooling Webapp made with Strapi & React.js.
categories:
- WebApp
frontend:
- React.js
made_by: Octree, Lean Startup Studio
made_by_url: https://octree.ch/
- title: Intuz
url: https://www.intuz.com/
description: Software Application Development Company Website made with Strapi, React and Next.js.
categories:
- Corporate Website
frontend:
- React
- Next.js
made_by: Intuz
made_by_url: https://www.intuz.com/
- title: CON&SEL15
url: https://conisel.com
description: CON&SEL15 Consulting and Selection. Trust and a leadership based on transparency are the basis of our values, beliefs and motivations.
categories:
- Corporate Website
frontend:
- Vue.js
- Bootstrap
made_by: Michel Díaz Martínez
made_by_url: https://michelmartinez.com
- title: Trabajos Remotos
url: https://trabajosremotos.es
description: Spanish job aggregator made with Strapi, React and Next.js.
categories:
- Job aggregator
frontend:
- React
- Next.js
made_by: Mango Milkshake
made_by_url: https://www.mango.moe
- title: Java Saga Coffee
url: https://javasagacoffee.com
description: This is a website made with Angular & Three JS. We use Strapi mostly for menu, contact, and catering.
categories:
- Restaurant
- 3D
frontend:
- Three JS
- Angular 9
made_by: Brew Crew Labs
made_by_url: https://brewcrewlabs.com
- title: Koninklijke Harmonie De Verenigde Vrienden
url: https://www.deverenigdevriendenheusden.be
description: Koninklijke Harmonie De Verenigde Vrienden is a great group of musicians of all ages who enjoy musical fun together. It's a progressive web app with a blog and webshop.
categories:
- Non-profit organisation
frontend:
- Nuxt.js
- BootstrapVue
made_by: Ruben Claes
made_by_url: https://www.deverenigdevriendenheusden.be
- title: theLifeBoard
url: https://thelifeboard.app
description: theLifeBoard helps users identify and achieve their goals creating habits, organising their weeks and providing curated resources
categories:
- Productivity
frontend:
- Vue.js
- Vuetify
made_by: Antonio Ufano
made_by_url: https://antonioufano.com
- title: Picke.rs
url: https://picke.rs
description: A site for organizing and saving "picks" from podcasts
categories:
- Community website
frontend:
- Nuxt.js
- TailwindCSS
made_by: Drew Town
made_by_url: https://www.drewtown.dev
- title: Collusion
url: https://www.collusion.com/
description: Collusion is a new brand for the coming age.
categories:
- Catalogue
frontend:
made_by: ASOS
made_by_url: https://asos.com
- title: Freestyle Stats
url: https://freestylestats.com
description: All the information about the best freestyle competitions and their participants. Results, matches, freestylers, DJs, judges and more!
categories:
frontend:
- Web Components
- Lit
made_by: Freestyle Stats
made_by_url: https://freestylestats.com/
- title: Bioinn
url: https://bioinn.ca/
description: Bioinn allows the discovery and purchase of organic, ecoresponsible and handcrafted products from your key districts.
categories:
frontend:
made_by: Phénix Web Agency
made_by_url: https://phenixweb.com/
- title: Beerbay
url: https://beerbay.net/
description: Buy craft beer online
categories:
- e-commerce
frontend:
- Vue.js
- Nuxt.js
made_by: Jesus
made_by_url: https://beerbay.net/about/
- title: Tiiz
url: https://www.tiiz.fr/
description: Your new alcohol delivery service, at tasting temperature. Door to door delivery in 30 minutes!
categories:
- Delivery
- Alcohol
frontend:
made_by: Tiiz
made_by_url: https://www.tiiz.fr/
- title: RiderClub
url: https://www.riderclub.fr/
description: Rent, easily test a two-wheeler
categories:
- Rent
- Motorbike
frontend:
- Angular
made_by: RiderClub
made_by_url: https://www.riderclub.fr/
- title: IBM AI Research
url: https://www.research.ibm.com/artificial-intelligence/experiments/try-our-tech/
description: At IBM Research, we create innovative tools and resources to help unleash the power of AI. See for yourself. Take our tech for a spin.
categories:
- AI
- Research
frontend:
made_by: IBM Research
made_by_url: https://www.research.ibm.com/
- title: Coopz
url: https://www.coopz.io/en/
description: coopz is the first social dating app that lets you meet new people in real life across the world, by matching of interests and places.
categories:
- Social app
- Dating app
frontend:
made_by: Coopz
made_by_url: https://www.coopz.io/en/
- title: Daniel Esteves
url: https://danestves.com
description: Portfolio and blog website to show information about Daniel Esteves and what he do
categories:
- Portfolio
frontend:
- Gatsby.js
- TailwindCSS
made_by: Daniel Esteves
made_by_url: https://danestves.com/
- title: Solution To End Poverty (STEP)
url: https://stepasia.interaktiv.sg
description: STEP is a registered non-profit Singapore organisation founded by Aileen Ong in February 2012. STEP's mission applies a holistic approach to tackle all factors that affect poverty. They include housing, education, healthcare, debt & financial management and providing vocational skills training & support for social enterprises so as to grow the income of Smile Village residents.
categories:
- Non-profit organisation
frontend:
- Bootstrap
made_by: Aileen Ong
made_by_url: https://stepasia.interaktiv.sg/who-we-are
- title: Treum
url: https://treum.io/
description: Treum is building a next-generation, decentralized supply chain operating system that helps businesses build trust with their customers.
categories:
- Corporate website
frontend:
- React
- Next.js
made_by: Treum
made_by_url: https://treum.io/
- title: Harry
url: https://www.thankyouharry.co/
description: Simply import you event contacts, schedule your messages and send them !
categories:
- Corporate website
frontend:
- React
- Ant Design
made_by: Sydney
made_by_url: https://www.twitter.com/chnsydney
- title: Ultrahack
url: https://alpha-1.ultrahacker.click/
description: Ultrahack combines hackathons, an innovation platform and accelerators in a unique manner. Our mission is to build a community where the best talent and leading industry partners could meet and collaborate towards future innovations.
categories:
- Hackathons
frontend:
made_by: Ultrahack
made_by_url: https://alpha-1.ultrahacker.click/about
- title: Solarmanager
url: https://www.solarmanager.ch
description: System for own comsuption, Optimization and visualization of solar power
categories:
- Corporate website
frontend:
made_by: Solarmanager
made_by_url: https://www.solarmanager.ch
- title: Lemod
url: https://lemod.co
description: Motivate Practice Ambassadors to take action. Reward your patients with Points & Loyalty Status when they share your practice with like-minded individuals.
categories:
- Intelligent marketing
frontend:
made_by: Lemod
made_by_url: https://lemod.co/
- title: UBreez
url: https://ubreez.com
description: Every breath matters. We filter our water, select healthy food, but don’t pay attention to the air we breathe. Use UBreez smart device to control it.
categories:
- Corporate website
frontend:
- JQuery
- Bootstrap
made_by: UBreez
made_by_url: https://ubreez.com
- title: Viking SCADA
url: https://vikingscada.com
description: Viking SCADA has been manufacturing quality Viking SCADA devices for the oilfield, water and other industries for more than 15 years. Today, we manufacture RFSCADA units with 4G (fourth generation) technology. Our units have been proven to be the product of choice of cost-conscious customers that require the utmost in reliability and ease-of-use.
categories:
- Corporate website
frontend:
- JQuery
- Bootstrap
made_by: Viking SCADA
made_by_url: https://twitter.com/vikingscada
- title: Sketch2Mail
url: http://www.sketch2mail.com
description: Automatically transform your email design into HTML code in minutes!
categories:
- Corporate website
frontend:
- JQuery
- Bootstrap
made_by: Sketch2Mail
made_by_url: http://www.sketch2mail.com
- title: Moin
url: https://moin.camp
description: Wake up the entrepreneurial spirit and feel the energy inside you! Inspiring speakers, Workshops, crashing party and NETTwork - that's M01N Startup Camp.
categories:
- Speaks
- Workshops
frontend:
- React
- Next.js
made_by: Moin
made_by_url: https://twitter.com/moin_camp
- title: Hackdoor
url: https://www.hackdoor.io
description: Where hackers grow.
categories:
- Speaks
- Workshops
frontend:
- Vue.js
- Nuxt.js
made_by: Michele Riva
made_by_url: https://github.com/micheleriva
- title: Bullswap
url: https://www.bullswap.com
description: Rent your next machine directly from your home
categories:
- Corporate website
- Machine rental
frontend:
- Angular
- Hammer.js
made_by: Bullswap
made_by_url: https://www.instagram.com/bullswap_official
- title: Habrmanova Primary School website
url: https://www.habrmanova.cz
description: A safe place where childrens playfully find their way to the top of the mountains.
categories:
- School website
frontend:
- React
- Next.js
made_by: Habrmanova Primary School
made_by_url: https://www.habrmanova.cz/kontakty
- title: Feedback house
url: https://feedback.house
description: Have everything you need in a single management tool. Goals, Performance evaluation, 1a1, PDI, 9Box, Internal Communication, Research, Calling Channel and Ombudsman
categories:
- Corporate website
- Marketing
frontend:
- React
- Gatsby
made_by: Feeback house
made_by_url: https://feedback.house
- title: Marlbank
url: https://www.marlbank.net
description: Browse through our full list of jazz blog articles.
categories:
- Blog
- Jazz
frontend:
- Vue.js
- Nuxt.js
made_by: Sugar Projects
made_by_url: https://www.sugarprojects.com
- title: Homadata
url: https://homadata.fr
description: Our mission is to promote the transparency of the real estate market by providing tools integrating all the relevant information for each real estate decision to buy, sell, invest or rent.
categories:
- Corporate website
- Real estate
frontend:
- Angular
- Hammer.js
made_by: Homadata
made_by_url: https://homadata.fr
- title: Baby Shark Live
url: https://babysharklive.com
description: Take an adventure into the sea with Baby Shark as he joins his friend Pinkfong to sing and dance through some of your favorite new and classic songs!
categories:
- Tickets sale
frontend:
- Vue.js
- Nuxt.js
made_by: Baby Shark Tour
made_by_url: https://twitter.com/babysharktour
- title: Mug & Snug
url: https://www.mugandsnug.com
description: Mug & Snug provides a platform that connects collectors, interior designers, businesses and home owners to one-of-a-kind homeware and kitchenware from the otherwise unreachable artists from around the world.
categories:
- e-commerce
frontend:
- Vue.js
- Nuxt.js
made_by: Phillip Gourley
made_by_url: https://twitter.com/philgourley
- title: Paradigma
url: https://www.paradigmadigital.com
description: We are Paradigm, we are people who have decided to put their talent at the service of a purpose. To make exceptional projects to help create a better world.
categories:
- Corporate website
frontend:
- Vue.js
made_by: Paradigma Digital
made_by_url: https://twitter.com/paradigmate
- title: Lachose
url: https://www.lachose.fr/agency
description: The thing is thus, an agency where everything moves, where nothing is frozen and in which ultimately, only one thing has not changed since its creation. Its independence.
categories:
- Agency
frontend:
- Vue.js
- Nuxt.js
made_by: Lachoseparis
made_by_url: https://twitter.com/lachoseparis
- title: Brajuu
url: https://brajuu.de
description: Now find your new favorite bra that fits you and your body perfectly!
categories:
- Corporate website
- Bra
frontend:
- React
- Gatsby
made_by: Brajuu
made_by_url: https://brajuu.de/faq
- title: Sazkamobil
url: https://www.sazkamobil.cz
description: The Czech Republic’s biggest mobile virtual network operator. SAZKAmobil uses the Vodafone’s network with a 99% coverage.
categories:
- Corporate website
- Telecommunication
frontend:
- Vue.js
made_by: Sazkamobil
made_by_url: https://www.facebook.com/SAZKAmobil
- title: Levio
url: https://www.levio.cz/
description: Find out how you are. Do the homework and get feedback from a senior in practice.
categories:
- Corporate website
frontend:
made_by: Leviocz
made_by_url: https://www.instagram.com/leviocz
- title: Explorer Lamden
url: https://explorer.lamden.io
description: Built on the Lamden ecosystem to display all the blockchain information.
categories:
- Blockchain
- Cryptocurrency
frontend:
- Svelte
- Sapper
made_by: Lamden
made_by_url: https://explorer.lamden.io
- title: Weflycheap
url: https://www.weflycheap.nl
description: Searching for a cheap vacation has never been easier. Weflycheap searches the websites of all holiday providers every day, looking for the best deal for you!
categories:
- Vacation deal
frontend:
made_by: Blue Flamingos
made_by_url: https://www.blueflamingos.nl
- title: ESC Nasa
url: https://esc.gsfc.nasa.gov
description: We stand ready to provide cross-cutting technical expertise and creative problem-solving to deliver not only high rate/full coverage communications services, but bold, forward-thinking solutions to advance exploration and discovery.
categories:
- Exploration & Space communication
frontend:
- React
- Gatsby
made_by: Andre Young
made_by_url: http://andrejyoung.com
- title: Cryptotesters
url: https://cryptotesters.com
description: Start your crypto journey and find the best cryptocurrency exchange or wallet on our crypto comparison platform
categories:
- Crypto
frontend:
- Next.js
- React
made_by: Tiago Taveira and Emanuel Coen
made_by_url: https://tiagotaveira.com/
- title: Stratosphere
url: https://www.stratosphereapp.io
description: Quickly measure plans in the cloud
categories:
- Cloud
- Architecture
frontend:
- JQuery
made_by: Stratosphere
made_by_url: https://www.stratosphereapp.io
- title: Meilleur Reprise
url: https://www.meilleure-reprise.com
description: Get a firm trade-in price quickly and have your car taken back by a professional in complete safety!
categories:
- Car sell
frontend:
- Gatsby
- React
made_by: Erlé Alberton
made_by_url: https://twitter.com/cubilizer?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor
- title: SwissDev Python Jobs
url: https://swissdevjobs.ch/jobs/Python/All
description: A transparent job board dedicated for Software Developers
categories:
- Business Website
- Job Board
frontend:
- Material UI
- ReactJS
made_by: SwissDev Python Jobs
made_by_url: https://swissdevjobs.ch/jobs/Python/All
- title: SessionForward
url: https://sessionforward.com
description: Minimal, quick, and affordable user session heatmaps and replays.
categories:
- User Experience
- UI Research
- Saas
frontend:
- Vue.js
- Tachyons
- Bulma
made_by: Dr. Mahesh Marcello Casiraghi
made_by_url: https://ntplab.com
- title: Vintoria.com
url: https://vintoria.com
description: Authentic Second Hand Designer Bags for Any Mood.
categories:
- e-commerce
frontend:
- Vue.js
- Bulma
- Paypal
made_by: Dr. Mahesh Marcello Casiraghi
made_by_url: https://ntplab.com
- title: lekh.pw
url: https://lekh.pw
description: Articles without distraction
categories:
- Blog
frontend:
- Sapper and Svelte
- tailwind
- Netlify
made_by: Narayan Singh
made_by_url: https://instagram.com/the_yadu
- title: Develocraft Website
url: https://develocraft.com
description: Develocraft is a software development agency. We help the founders of tech startups get their ideas off the drawing board and onto people’s devices.
categories:
- Corporate website
frontend:
- React
- Next.js
- Apollo
- Cloudinary
- Styled-components
made_by: Develocraft Team
made_by_url: https://develocraft.com
- title: livingwatersmuseum
url: https://livingwatersmuseum.org/
description: This website is for Virtual museum collecting and curatingvisual narratives about Water Heritage of India
categories:
- Non-profit organisation
- Creative website
frontend:
- Next.js
- React Js
- Bootstrap
made_by: Pedalsup
made_by_url: https:/pedalsup.com
- title: Freatle
url: https://freatle.com
description: Organize your event with Freatle. The simplest to know who brings what.
categories:
- Productivity
- Event manager
frontend:
- Nuxt.js
- Bulma
- Tailwind
made_by: Freatle
made_by_url: https://freatle.com/en/about/
- title: Exponent
url: https://www.tryexponent.com
description: Prepare for tech interviews with Exponent, the ultimate community of career advancers.
categories:
- Corporate Website
- E-commerce
- Education
frontend:
- React
- Webpack
- React-router
- SCSS
- React-helmet
made_by: Exponent team
made_by_url: https://www.tryexponent.com/about
- title: MISTER MISERY
url: https://mistermisery.com/
description: This is a band website made with Nuxt.js and Vuetify for the band MISTER MISERY.
categories:
- Band website
frontend:
- Nuxt.js
- Vuetify
made_by: Fabian Mieller
made_by_url: https://fabianmieller.de
- title: Mypopotte
url: https://mypopotte.com
description: With Mypopotte, you can share and improve your recipes with your groups of friends.
categories:
- Social network
- Community website
frontend:
- Nuxt.js
- TailwindCSS
- SCSS
made_by: Gaetan SENN
made_by_url: https://dewib.com
- title: Sudoku Lovers
url: https://www.sudokulovers.com
description: Free Curated Online Sudoku Puzzles For Sudoku Fans
categories:
- Games
- Community website
frontend:
- Nuxt.js
- Vue
made_by: Team Regunt
made_by_url: https://regunt.com
- title: Barbecue Planner
url: https://www.barbecueplanner.com
description: Barbecue planner helps you plan the perfect BBQ for your friends and family.
categories:
- Tools
- Food
frontend:
- Nuxt.js
- Vue
made_by: Team Regunt
made_by_url: https://regunt.com
- title: Lucas NP
url: https://lucasnp.com
description: Web Developer Portfolio
categories:
- Portfolio
frontend:
- Angular
made_by: Lucas Neves Pereira
made_by_url: https://lucasnp.com
- title: Linkbase
url: https://linkbase.in
description: Web Application for link storage and sharing.
categories:
- Application
frontend:
- React
- Material-ui
made_by: Vishnu Manukonda
made_by_url: https://www.instagram.com/viva_manukonda/
- title: Aravind Portfolio and Blog site
url: https://aravind.netlify.com/
description: Developer Portfolio
categories:
- Portfolio and Blog site
frontend:
- Gatsby.js
- React.js
made_by: Aravind
made_by_url: https://twitter.com/aravindviewz
- title: Chris Wray's Developer Portfolio
url: https://chriswray.dev
description: This was my first project with Strapi and Nuxt! It was a lot of fun to work on and I learned so much.
categories:
- Portfolio Websites
frontend:
- Nuxt.js
- TailwindCSS
- TailwindUI
made_by: Chris Wray
- title: Koj Blog
url: https://koj.co/en-ch/blog/
description: Koj's official blog and content pages are powered entirely by Strapi
categories:
- Blog
frontend:
- Svelte
- Sapper
made_by: Anand Chowdhary
made_by_url: https://anandchowdhary.com
- title: Beshak - Indian Insurance portal
url: https://www.beshak.org
description: India's first insurance community portal for consumers by consumers.
categories:
- Content
- Forum
- Insurance
frontend:
- Nuxt.js
- TailwindCSS
made_by: Sandip Baradiya
made_by_url: https://twitter.com/sandiprb
- title: Outdoormix Festival
url: https://www.outdoormixfestival.com
description: A full history of 7 years of Ride & Party at Outdoormix Festival propulsed by Strapi
categories:
- Event
frontend:
- Nuxt.js
- Vue
- Apollo
- SCSS
made_by: digisquad
made_by_url: https://digisquad.io
- title: Henrik Larsson
url: https://larssonhenrik.com/
description: Henrik's portfolio website uses Strapi for managing the content on the site.
categories:
- Portfolio
- Freelance website
frontend:
- Gatsby.js
- React.js
- Tailwind CSS
made_by: Henrik Larsson
made_by_url: https://larssonhenrik.com/
- title: Indeed Career Guide
url: https://www.indeed.com/career-advice
description: Career advice on how to find a job, write your resume and cover letter, ace your interviews, start a new job, and choose career paths.
categories:
- Blog
frontend:
- Gatsby.js
- React.js
made_by: Indeed
made_by_url: https://www.indeed.com/career-advice
- title: Zirve Yazılım
url: https://zirveyazilim.net
description: Zirve Yazılım offers the most useful accounting programs to more than 45000 customers with its financial advisor SME e-transformation and online accounting products.
categories:
- Corporate website
frontend:
- HTML
- JQuery
- 11ty
made_by: Efabrika Service Design Agency
made_by_url: https://efabrika.com
- title: Mobilsen Özgürsün! | Toyota Start Your Impossible
url: https://mobilsenozgursun.com
description: The goal is to lead a world where everyone can move freely! Discover the inspiring story of Okan and Mert and Toyota mobility solutions. Start Your Impossible!
categories:
- Landing Page
frontend:
- HTML
- JQuery
- 11ty
made_by: Efabrika Service Design Agency
made_by_url: https://efabrika.com
- title: Logsign Next-Gen SIEM SOAR and Value Added Services
url: https://logsign.com
description: Delivering automation-driven cyber security solutions and are committed to providing the smartest easiest-to-use and most affordable cybersecurity detection and response solutions and value-added services.
categories:
- Corporate website
frontend:
- HTML
- JQuery
- 11ty
made_by: Efabrika Service Design Agency
made_by_url: https://efabrika.com
- title: LilO. Moino
url: https://lilomoino.fr
description: Blog photo, video and music.
categories:
- Blog
frontend:
- Vue.js
- Nuxt.js
- KNACSS
made_by: Nicolas Hamelin
made_by_url: https://nicolashamelin.fr/
- title: T10 Studios website
url: https://turn10studios.com/
description: A creative website for T10 Studios, part of Xbox Gaming Studio and creators of the Forza Franchise.
categories:
- Corporate website
frontend:
- Vue.js
made_by: 1minus1
made_by_url: https://1minus1.com/
- title: OwlTing Blockchain Services
url: https://www.owlting.com/obs
description: Use OwlTing Blockchain Services to boost your business with greater transparency and security
categories:
- Corporate website
frontend:
- Vue.js
- Tailwind CSS
- Puppeteer
made_by: Phantas Weng (F2E@OwlTing)
made_by_url: https://phantas.tw/
- title: Adapttive
url: https://adapttive.com
description: A tech blog focused on ecommerce and opensource
categories:
- Blog
frontend:
- Vue.js
- Gridsome
made_by: Milind Singh
made_by_url: https://adapttive.com/milind
- title: BoltAPI - Monitoring of Websites and APIs
url: https://boltapi.com/
description: Monitor your Websites and APIs and certificate in realtime. When something is down get notified in many different ways.
categories:
- Developer Tools
- Website Monitoring
frontend:
- Nuxt.js
- Bootstrap
made_by: Tobias Thiele
made_by_url: https://tobias-thiele.de/
- title: Ops One - Swiss DevOps services
url: https://opsone.ch/
description: Whether consulting, managed servers, managed Kubernetes or managed applications - Ops One offers you individual solutions that fit you exactly.
categories:
- Corporate website
- Blog
frontend:
- Nuxt.js
made_by: Unknown Digital
made_by_url: https://unknown.digital/
- title: Café Hamlet - Café Restaurant Rouen - Aître Saint Maclou
url: https://www.cafe-hamlet.fr/
description: Website of french restaurant of ex 2 star Chef Gilles Tournadre (Café Hamlet)
categories:
- Corporate Website
frontend:
- Create react app
- Bootstrap
made_by: Gaylord Julien
made_by_url: https://www.emael76.fr/
- title: Orange Flex blog
url: https://flex.orange.pl/blog
description: A blog abour Flex news, technology information and tips
categories:
- Blog
frontend:
- React