-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathstarters.yml
6650 lines (6647 loc) · 225 KB
/
starters.yml
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
- url: https://ghost-balsa.draftbox.co/
repo: https://github.com/draftbox-co/gatsby-ghost-balsa-starter
description: A Gatsby starter for creating blogs from headless Ghost CMS.
tags:
- Blog
- CMS:Headless
- SEO
- Styling:SCSS
features:
- Balsa theme by Draftbox
- Data sourcing from headless Ghost
- Responsive design
- SEO optimized
- OpenGraph structured data
- Twitter Cards meta
- Sitemap Generation
- XML Sitemaps
- Progressive Web App
- Offline Support
- RSS Feed
- Composable and extensible
- url: https://gatsby-starter-wordpress-twenty-twenty.netlify.app/
repo: https://github.com/henrikwirth/gatsby-starter-wordpress-twenty-twenty
description: A port of the WordPress Twenty Twenty theme to Gatsby.
tags:
- Blog
- CMS:WordPress
- Styling:Other
- Pagination
features:
- Data sourcing from WordPress
- Uses WPGraphQL as an API
- Using the new gatsby-wordpress-source@v4
- Responsive design
- Works well with Gatsby Cloud incremental updates
- url: https://22boxes-gatsby-uno.netlify.com/
repo: https://github.com/iamtherealgd/gatsby-starter-22boxes-uno
description: A Gatsby starter for creating blogs and showcasing your work
tags:
- Blog
- Portfolio
- Markdown
- SEO
features:
- Work and About pages
- Work page with blog type content management
- Personal webiste to create content and put your portfolio items
- Landing pages for your work items, not just links
- url: https://gatsby-wordpress-libre.netlify.com/
repo: https://github.com/armada-inc/gatsby-wordpress-libre-starter
description: A Gatsby starter for creating blogs from headless WordPress CMS.
tags:
- Blog
- SEO
- CMS:WordPress
- Styling:Other
- Pagination
features:
- WordPress Libre 2 skin
- Data sourcing from headless WordPress
- Responsive design
- SEO optimized
- OpenGraph structured data
- Twitter Cards meta
- Sitemap Generation
- XML Sitemaps
- Progressive Web App
- url: https://delog-w3layouts.netlify.com/
repo: https://github.com/W3Layouts/gatsby-starter-delog
description: A Gatsby Starter built with Netlify CMS to launch your dream blog with a click.
tags:
- Blog
- CMS:Netlify
features:
- Simple blog designed for designer and developers
- Manage Posts with Netlify CMS
- Option to add featured image and meta description while adding posts
- url: https://styxlab.github.io
repo: https://github.com/styxlab/gatsby-starter-try-ghost
description: A Gatsby starter for creating blogs from headless Ghost CMS.
tags:
- Blog
- CMS:Headless
- SEO
- Styling:PostCSS
features:
- Casper standard Ghost theme
- Data sourcing from headless Ghost
- Sticky navigation headers
- Hover on author avatar
- Responsive design
- SEO optimized
- Styled 404 page
- OpenGraph structured data
- Twitter Cards meta
- Sitemap Generation
- XML Sitemaps
- Progressive Web App
- Offline Support
- RSS Feed
- Composable and extensible
- url: https://gatsby-theme-sky-lite.netlify.com
repo: https://github.com/vim-labs/gatsby-theme-sky-lite-starter
description: A lightweight Gatsby starter with Material-UI and MDX Markdown support.
tags:
- Blog
- Styling:Material
features:
- Lightweight
- Markdown
- MDX
- MaterialUI Components
- React Icons
- url: https://authenticaysh.netlify.com/
repo: https://github.com/seabeams/gatsby-starter-auth-aws-amplify
description: Full-featured Auth with AWS Amplify & AWS Cognito
tags:
- AWS
- Authentication
features:
- Full-featured AWS Authentication with Cognito
- Error feedback in forms
- Password Reset
- Multi-Factor Authentication
- Styling with Bootstrap and Sass
- url: https://gatsby-starter-blog-demo.netlify.app/
repo: https://github.com/gatsbyjs/gatsby-starter-blog
description: official blog
tags:
- Official
- Blog
features:
- Basic setup for a full-featured blog
- Support for an RSS feed
- Google Analytics support
- Automatic optimization of images in Markdown posts
- Support for code syntax highlighting
- Includes plugins for easy, beautiful typography
- Includes React Helmet to allow editing site meta tags
- Includes plugins for offline support out of the box
- url: https://gatsby-starter-default-demo.netlify.app/
repo: https://github.com/gatsbyjs/gatsby-starter-default
description: official default
tags:
- Official
features:
- Comes with React Helmet for adding site meta tags
- Includes plugins for offline support out of the box
- url: https://gatsby-netlify-cms.netlify.com/
repo: https://github.com/netlify-templates/gatsby-starter-netlify-cms
description: n/a
tags:
- Blog
- Styling:Bulma
- CMS:Netlify
features:
- A simple blog built with Netlify CMS
- Basic directory organization
- Uses Bulma for styling
- Visit the repo to learn how to set up authentication, and begin modeling your content.
- url: https://vagr9k.github.io/gatsby-advanced-starter/
repo: https://github.com/Vagr9K/gatsby-advanced-starter
description: Great for learning about advanced features and their implementations
tags:
- Blog
- Styling:None
features:
- Does not contain any UI frameworks
- Provides only a skeleton
- Tags
- Categories
- Google Analytics
- Disqus
- Offline support
- Web App Manifest
- SEO
- url: https://vagr9k.github.io/gatsby-material-starter/
repo: https://github.com/Vagr9K/gatsby-material-starter
description: n/a
tags:
- Styling:Material
features:
- React-MD for Material design
- Sass/SCSS
- Tags
- Categories
- Google Analytics
- Disqus
- Offline support
- Web App Manifest
- SEO
- url: https://gatsby-advanced-blog-system.danilowoz.now.sh/blog
repo: https://github.com/danilowoz/gatsby-advanced-blog-system
description: Create a complete blog from scratch with pagination, categories, featured posts, author, SEO and navigation.
tags:
- Pagination
- Markdown
- SEO
features:
- Pagination;
- Category and tag pages (with pagination);
- Category list (with navigation);
- Featured post;
- Author page;
- Next and prev post;
- SEO component.
- url: https://graphcms.github.io/gatsby-graphcms-tailwindcss-example/
repo: https://github.com/GraphCMS/gatsby-graphcms-tailwindcss-example
description: The default Gatsby starter blog with the addition of the gatsby-source-graphql and tailwind dependencies.
tags:
- Styling:Tailwind
- CMS:Headless
features:
- Tailwind style library
- GraphQL source plugin
- Very simple boilerplate
- url: https://wonism.github.io/
repo: https://github.com/wonism/gatsby-advanced-blog
description: n/a
tags:
- Portfolio
- Redux
features:
- Blog post listing with previews (image + summary) for each blog post
- Categories and tags for blog posts with pagination
- Search post with keyword
- Put react application / tweet into post
- Copy some codes in post with clicking button
- Portfolio
- Resume
- Redux for managing statement (with redux-saga / reselect)
- url: https://gatsby-tailwind-emotion-starter.netlify.com/
repo: https://github.com/muhajirdev/gatsby-tailwind-emotion-starter
description: A Gatsby Starter with Tailwind CSS + Emotion JS
tags:
- Styling:Tailwind
features:
- Eslint Airbnb without semicolon and without .jsx extension
- Offline support
- Web App Manifest
- url: https://gatsby-starter-redux-firebase.netlify.com/
repo: https://github.com/muhajirdev/gatsby-starter-redux-firebase
description: A Gatsby + Redux + Firebase Starter. With Authentication
tags:
- Styling:None
- Firebase
- Client-side App
features:
- Eslint Airbnb without semicolon and without .jsx extension
- Firebase
- Web App Manifest
- url: https://dschau.github.io/gatsby-blog-starter-kit/
repo: https://github.com/dschau/gatsby-blog-starter-kit
description: n/a
tags:
- Blog
features:
- Blog post listing with previews for each blog post
- Navigation between posts with a previous/next post button
- Tags and tag navigation
- url: https://contentful.github.io/starter-gatsby-blog/
repo: https://github.com/contentful/starter-gatsby-blog
description: n/a
tags:
- Blog
- CMS:Contentful
- CMS:Headless
features:
- Based on the Gatsby Starter Blog
- Includes Contentful Delivery API for production build
- Includes Contentful Preview API for development
- url: https://react-firebase-authentication.wieruch.com/
repo: https://github.com/the-road-to-react-with-firebase/react-gatsby-firebase-authentication
description: n/a
tags:
- Firebase
features:
- Sign In, Sign Up, Sign Out
- Password Forget
- Password Change
- Protected Routes with Authorization
- Realtime Database with Users
- url: http://dmwl.net/gatsby-hampton-theme
repo: https://github.com/davad/gatsby-hampton-theme
description: n/a
tags:
- Styling:CSS-in-JS
features:
- Eslint in dev mode with the airbnb config and prettier formatting rules
- Emotion for CSS-in-JS
- A basic blog, with posts under src/pages/blog
- A few basic components (Navigation, Layout, Link wrapper around gatsby-link))
- Based on gatsby-starter-gatsbytheme
- url: https://orgapp.github.io/gatsby-starter-orga/
repo: https://github.com/orgapp/gatsby-starter-orga
description: Want to use org-mode instead of markdown? This is for you.
tags:
- Blog
features:
- Use org-mode files as source.
- Generate post pages, can be configured to be file-based or section-based.
- Generate posts index pages.
- url: http://2column-portfolio.surge.sh/
repo: https://github.com/praagyajoshi/gatsby-starter-2column-portfolio
description: n/a
tags:
- Portfolio
- Styling:SCSS
features:
- Designed as a minimalistic portfolio website
- Grid system using flexboxgrid
- Styled using SCSS
- Font icons using font-awesome
- Google Analytics integration
- Open Sans font using Google Fonts
- Prerendered Open Graph tags for rich sharing
- url: https://prototypeinteractive.github.io/gatsby-react-boilerplate/
repo: https://github.com/PrototypeInteractive/gatsby-react-boilerplate
description: n/a
tags:
- Styling:Bootstrap
features:
- Basic configuration and folder structure
- Uses PostCSS and Sass (with autoprefixer and pixrem)
- Uses Bootstrap 4 grid
- Leaves the styling to you
- Uses data from local json files
- Contains Node.js server code for easy, secure, and fast hosting
- url: http://capricious-spring.surge.sh/
repo: https://github.com/noahg/gatsby-starter-blog-no-styles
description: n/a
tags:
- Blog
- Styling:None
features:
- Same as official gatsby-starter-blog but with all styling removed
- url: https://gatsby-starter-github-api.netlify.com/
repo: https://github.com/lundgren2/gatsby-starter-github-api
description: Single page starter based on gatsby-source-github-api
tags:
- Portfolio
- Onepage
features:
- Use your GitHub as your own portfolio site
- List your GitHub repositories
- GitHub GraphQL API v4
- url: https://gatsby-starter-bloomer.netlify.com/
repo: https://github.com/Cethy/gatsby-starter-bloomer
description: n/a
tags:
- Styling:Bulma
features:
- Based on gatsby-starter-default
- Bulma CSS Framework with its Bloomer react components
- Font-Awesome icons
- Includes a simple fullscreen hero w/ footer example
- url: https://gatsby-starter-bootstrap-netlify.netlify.com/
repo: https://github.com/konsumer/gatsby-starter-bootstrap-netlify
description: n/a
tags:
- Styling:Bootstrap
- CMS:Netlify
features:
- Very similar to gatsby-starter-netlify-cms, slightly more configurable (e.g. set site-title in gatsby-config) with Bootstrap/Bootswatch instead of bulma
- url: https://gatstrap.netlify.com/
repo: https://github.com/jaxx2104/gatsby-starter-bootstrap
description: n/a
tags:
- Styling:Bootstrap
features:
- Bootstrap CSS framework
- Single column layout
- Basic components like SiteNavi, SitePost, SitePage
- url: http://gatsby-bulma-storybook.surge.sh/
repo: https://github.com/gvaldambrini/gatsby-starter-bulma-storybook
description: n/a
tags:
- Styling:Bulma
- Storybook
- Testing
features:
- Storybook for developing components in isolation
- Bulma and Sass support for styling
- CSS modules
- Prettier & eslint to format & check the code
- Jest
- url: https://gatsby-starter-business.netlify.com/
repo: https://github.com/v4iv/gatsby-starter-business
description: n/a
tags:
- Styling:Bulma
- PWA
- CMS:Netlify
- Disqus
- Search
- Pagination
features:
- Complete Business Website Suite - Home Page, About Page, Pricing Page, Contact Page and Blog
- Netlify CMS for Content Management
- SEO Friendly (Sitemap, Schemas, Meta Tags, GTM etc)
- Bulma and Sass Support for styling
- Progressive Web App & Offline Support
- Tags and RSS Feed for Blog
- Disqus and Share Support
- Elastic-Lunr Search
- Pagination
- Easy Configuration using `config.js` file
- url: https://haysclark.github.io/gatsby-starter-casper/
repo: https://github.com/haysclark/gatsby-starter-casper
description: n/a
tags:
- PWA
features:
- Page pagination
- CSS
- Tags
- Google Analytics
- Offline support
- Web App Manifest
- SEO
- url: http://gatsby-starter-ceevee.surge.sh/
repo: https://github.com/amandeepmittal/gatsby-starter-ceevee
description: n/a
tags:
- Portfolio
features:
- Based on the Ceevee site template, design by Styleshout
- Single Page Resume/Portfolio site
- Target audience Developers, Designers, etc.
- Used CSS Modules, easy to manipulate
- FontAwsome Library for icons
- Responsive Design, optimized for Mobile devices
- url: https://gatsby-starter-contentful-i18n.netlify.com/
repo: https://github.com/mccrodp/gatsby-starter-contentful-i18n
description: i18n support and language switcher for Contentful starter repo
tags:
- i18n
- CMS:Contentful
- CMS:Headless
features:
- Localization (Multilanguage)
- Dynamic content from Contentful CMS
- Integrates i18n plugin starter and using-contentful repos
- url: https://cranky-edison-12166d.netlify.com/
repo: https://github.com/datocms/gatsby-portfolio
description: n/a
tags:
- CMS:DatoCMS
- CMS:Headless
features:
- Simple portfolio to quick start a site with DatoCMS
- Contents and media from DatoCMS
- Custom Sass style
- SEO
- url: https://gatsby-deck.netlify.com/
repo: https://github.com/fabe/gatsby-starter-deck
description: n/a
tags:
- Presentation
features:
- Create presentations/slides using Gatsby.
- Offline support.
- Page transitions.
- url: https://gatsby-starter-default-i18n.netlify.com/
repo: https://github.com/angeloocana/gatsby-starter-default-i18n
description: n/a
tags:
- i18n
features:
- localization (Multilanguage)
- url: http://gatsby-dimension.surge.sh/
repo: https://github.com/codebushi/gatsby-starter-dimension
description: Single page starter based on the Dimension site template
tags:
- Portfolio
- HTML5UP
- Styling:SCSS
features:
- Designed by HTML5 UP
- Simple one page site that’s perfect for personal portfolios
- Fully Responsive
- Styling with SCSS
- url: https://gatsby-docs-starter.netlify.com/
repo: https://github.com/ericwindmill/gatsby-starter-docs
description: n/a
tags:
- Documentation
- Styling:CSS-in-JS
features:
- All the features from gatsby-advanced-starter, plus
- Designed for Documentation / Tutorial Websites
- ‘Table of Contents’ Component, Auto generates ToC from posts - just follow the file frontmatter conventions from markdown files in ‘lessons’.
- Styled Components w/ ThemeProvider
- Basic UI
- A few extra components
- Custom prismjs theme
- React Icons
- url: https://parmsang.github.io/gatsby-starter-ecommerce/
repo: https://github.com/parmsang/gatsby-starter-ecommerce
description: Easy to use starter for an e-commerce store
tags:
- Styling:Other
- Stripe
- E-commerce
- PWA
- Authentication
features:
- Uses the Moltin e-commerce Api
- Stripe checkout
- Semantic-UI
- Styled components
- Google Analytics - (you enter the tracking-id)
- React-headroom
- Eslint & Prettier. Uses Airbnb JavaScript Style Guide
- Authentication via Moltin (Login and Register)
- url: http://gatsby-forty.surge.sh/
repo: https://github.com/codebushi/gatsby-starter-forty
description: Multi-page starter based on the Forty site template
tags:
- Styling:SCSS
- HTML5UP
features:
- Designed by HTML5 UP
- Colorful homepage, and also includes a Landing Page and Generic Page components.
- Many elements are available, including buttons, forms, tables, and pagination.
- Custom grid made with CSS Grid
- Styling with SCSS
- url: https://themes.gatsbythemes.com/gatsby-starter/
repo: https://github.com/saschajullmann/gatsby-starter-gatsbythemes
description: n/a
tags:
- Styling:CSS-in-JS
- Blog
- Testing
- Linting
features:
- CSS-in-JS via Emotion.
- Jest and Enzyme for testing.
- Eslint in dev mode with the airbnb config and prettier formatting rules.
- React 16.
- A basic blog, with posts under src/pages/blog. There’s also a script which creates a new Blog entry (post.sh).
- Data per JSON files.
- A few basic components (Navigation, Footer, Layout).
- Layout components make use of Styled-System.
- Google Analytics (you just have to enter your tracking-id).
- Gatsby-Plugin-Offline which includes Service Workers.
- Prettier for a uniform codebase.
- Normalize css (7.0).
- Feather icons.
- Font styles taken from Tachyons.
- url: https://gcn.netlify.com/
repo: https://github.com/ryanwiemer/gatsby-starter-gcn
description: A starter template to build amazing static websites with Gatsby, Contentful and Netlify
tags:
- CMS:Contentful
- CMS:Headless
- Blog
- Netlify
- Styling:CSS-in-JS
features:
- CMS:Contentful integration with ready to go placeholder content
- Netlify integration including a pre-built contact form
- Minimal responsive design - made to customize or tear apart
- Pagination logic
- Styled components
- SEO Friendly Component
- JSON-LD Schema
- OpenGraph sharing support
- Sitemap Generation
- Google Analytics
- Progressive Web app
- Offline Support
- RSS Feed
- Gatsby Standard module for linting JavaScript with StandardJS
- Stylelint support for Styled Components to lint the CSS in JS
- url: https://alampros.github.io/gatsby-starter-grommet/
repo: https://github.com/alampros/gatsby-starter-grommet
description: n/a
tags:
- Styling:Grommet
features:
- Barebones configuration for using the Grommet design system
- Uses Sass (with CSS modules support)
- url: https://gatsby-starter-hello-world-demo.netlify.app/
repo: https://github.com/gatsbyjs/gatsby-starter-hello-world
description: official hello world
tags:
- Official
features:
- A no-frills Gatsby install
- No plugins, no boilerplate
- Great for advanced users
- url: https://gatsby-starter-hello-world-tailwind-css.netlify.com/
repo: https://github.com/ohduran/gatsby-starter-hello-world-tailwind-css
description: hello world + Tailwind CSS
tags:
- Styling:Tailwind
features:
- One plugin, no boilerplate
- Great for advanced users
- url: https://gatsby-starter-hero-blog.greglobinski.com/
repo: https://github.com/greglobinski/gatsby-starter-hero-blog
description: no description yet
tags:
- Styling:PostCSS
- SEO
- Markdown
features:
- Easy editable content in Markdown files (posts, pages and parts)
- CSS with `styled-jsx` and `PostCSS`
- SEO (sitemap generation, robot.txt, meta and OpenGraph Tags)
- Social sharing (Twitter, Facebook, Google, LinkedIn)
- Comments (Facebook)
- Images lazy loading and `webp` support (gatsby-image)
- Post categories (category based post list)
- Full text searching (Algolia)
- Contact form (Netlify form handling)
- Form elements and validation with `ant-design`
- RSS feed
- 100% PWA (manifest.webmanifest, offline support, favicons)
- Google Analytics
- App favicons generator (node script)
- Easy customizable base styles via `theme` object generated from `yaml` file (fonts, colors, sizes)
- React v.16.3 (gatsby-plugin-react-next)
- Components lazy loading (social sharing)
- ESLint (google config)
- Prettier code styling
- webpack `BundleAnalyzerPlugin`
- url: https://gatsby-starter-i18n-lingui.netlify.com/
repo: https://github.com/dcroitoru/gatsby-starter-i18n-lingui
description: n/a
tags:
- i18n
features:
- Localization (Multilanguage) provided by js-lingui
- Message extraction
- Avoids code duplication - generates pages for each locale
- Possibility of translated paths
- url: https://lumen.netlify.com/
repo: https://github.com/alxshelepenok/gatsby-starter-lumen
description: A minimal, lightweight and mobile-first starter for creating blogs uses Gatsby.
tags:
- Blog
- CMS:Netlify
- Pagination
- Disqus
- RSS
- Linting
- Testing
- Styling:PostCSS
- Styling:SCSS
features:
- Lost Grid
- Jest testing
- Beautiful typography inspired by matejlatin/Gutenberg
- Mobile-First approach in development
- Stylesheet built using SASS and BEM-Style naming
- Syntax highlighting in code blocks
- Sidebar menu built using a configuration block
- Archive organized by tags and categories
- Pagination support
- Offline support
- Google Analytics support
- Disqus Comments support
- url: https://minimal-blog.lekoarts.de
repo: https://github.com/LekoArts/gatsby-starter-minimal-blog
description: This starter is part of a german tutorial series on Gatsby. The starter will change over time to use more advanced stuff (feel free to express your ideas in the repository). Its first priority is a minimalistic style coupled with a lot of features for the content.
tags:
- Blog
- MDX
- Styling:CSS-in-JS
- Netlify
- Linting
- PWA
features:
- Minimal and clean white layout
- Write your blog posts in MDX
- Offline Support, WebApp Manifest, SEO
- Code highlighting (with prism-react-renderer) and live preview (with react-live)
- url: https://gatsby-starter-modern-demo.netlify.app/
repo: https://github.com/kripod/gatsby-starter-modern
description: no description yet
tags:
- Linting
features:
- A set of strict linting rules (based on the Airbnb JavaScript Style Guide)
- Encourage automatic code formatting
- Prefer using Yarn for package management
- Use EditorConfig to maintain consistent coding styles between different editors and IDEs
- Integration with Visual Studio Code
- Based on gatsby-starter-default
- url: https://gatsby-starter-personal-blog.greglobinski.com/
repo: https://github.com/greglobinski/gatsby-starter-personal-blog
description: n/a
tags:
- Blog
- Markdown
- Netlify
- Styling:Material
features:
- Ready to use, but easily customizable a fully equipped theme starter
- Easy editable content in Markdown files (posts, pages and parts)
- ‘Like an app’ layout transitions
- Easily restyled through theme object
- Styling with JSS
- Page transitions
- Comments (Facebook)
- Post categories
- Post list filtering
- Full text searching (Algolia)
- Contact form (Netlify form handling)
- Material UI (@next)
- RSS feed
- Full screen mode
- User adjustable articles’ body copy font size
- Social sharing (Twitter, Facebook, Google, LinkedIn)
- PWA (manifes.json, offline support, favicons)
- Google Analytics
- Favicons generator (node script)
- Components leazy loading with AsyncComponent (social sharing, info box)
- ESLint (google config)
- Prettier code styling
- Custom webpack CommonsChunkPlugin settings
- webpack BundleAnalyzerPlugin
- url: http://gatsby-photon.surge.sh/
repo: https://github.com/codebushi/gatsby-starter-photon
description: Single page starter based on the Photon site template
tags:
- HTML5UP
- Onepage
- Styling:SCSS
features:
- Designed by HTML5 UP
- Single Page, Responsive Site
- Custom grid made with CSS Grid
- Styling with SCSS
- url: https://portfolio-bella.netlify.com/
repo: https://github.com/LekoArts/gatsby-starter-portfolio-bella
description: A portfolio starter for Gatsby. The target audience are designers and photographers. The light themed website shows your work with large images & big typography. The Onepage is powered by the Headless CMS Prismic.io. and has programmatically created pages for your projects. General settings and colors can be changed in a config & theme file.
tags:
- Portfolio
- CMS:Prismic
- CMS:Headless
- Styling:CSS-in-JS
- Onepage
- PWA
- Linting
features:
- Big typography & images
- White theme
- Prismic.io as CMS
- Emotion for styling + Emotion-Grid
- One-page layout with sub-pages for case studies
- Easily configurable
- And other good stuff (SEO, Offline Support, WebApp Manifest Support)
- url: https://cara.lekoarts.de
repo: https://github.com/LekoArts/gatsby-starter-portfolio-cara
description: Playful and Colorful One-Page portfolio featuring Parallax effects and animations. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI.
tags:
- Portfolio
- Onepage
- Styling:CSS-in-JS
- PWA
features:
- React Spring Parallax effects
- Theme UI-based theming
- CSS Animations and shapes
- Light/Dark mode
- url: https://emilia.lekoarts.de
repo: https://github.com/LekoArts/gatsby-starter-portfolio-emilia
description: A portfolio starter for Gatsby. The target audience are designers and photographers. The dark themed website shows your work with large images in a grid-layout (powered by CSS Grid). The transition effects on the header add a playful touch to the overall minimal design. The website has programmatically created pages for your projects (with automatic image import). General settings and colors can be changed in a config & theme file.
tags:
- Portfolio
- PWA
- Transitions
- MDX
- Styling:CSS-in-JS
- Linting
- Testing
features:
- Focus on big images (with gatsby-image)
- Dark Theme with HeroPatterns Header
- CSS Grid and styled-components
- Page transitions
- Cypress for End-to-End testing
- react-spring animations
- One-Page layout with sub-pages for projects
- Create your projects in MDX (automatic import of images)
- And other good stuff (SEO, Offline Support, WebApp Manifest Support)
- url: https://emma.lekoarts.de
repo: https://github.com/LekoArts/gatsby-starter-portfolio-emma
description: Minimalistic portfolio with full-width grid, page transitions, support for additional MDX pages, and a focus on large images. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI. Using the Gatsby Theme "@lekoarts/gatsby-theme-emma".
tags:
- Portfolio
- MDX
- Transitions
- Styling:CSS-in-JS
- PWA
features:
- MDX
- react-spring page animations
- Optional MDX pages which automatically get added to the navigation
- Fully customizable through the usage of Gatsby Themes (and Theme UI)
- Light Mode / Dark Mode
- Google Analytics Support
- SEO (Sitemap, OpenGraph tags, Twitter tags)
- Offline Support & WebApp Manifest
- url: https://gatsby-starter-procyon.netlify.com/
repo: https://github.com/danielmahon/gatsby-starter-procyon
description: n/a
tags:
- PWA
- CMS:Headless
- CMS:Other
- Styling:Material
- Netlify
features:
- Gatsby + React (server side rendering)
- GraphCMS Headless CMS
- DraftJS (in-place) Medium-like Editing
- Apollo GraphQL (client-side)
- Local caching between builds
- Material-UI (layout, typography, components, etc)
- Styled-Components™-like API via Material-UI
- Netlify Deployment Friendly
- Netlify Identity Authentication (enables editing)
- Automatic versioning, deployment and CHANGELOG
- Automatic rebuilds with GraphCMS and Netlify web hooks
- PWA (Progressive Web App)
- Google Fonts
- url: http://gatsby-starter-product-guy.surge.sh/
repo: https://github.com/amandeepmittal/gatsby-starter-product-guy
description: n/a
tags:
- Portfolio
features:
- Single Page
- A portfolio Developers and Product launchers alike
- Using Typography.js easy to switch fonts
- All your Project/Portfolio Data in Markdown, server by GraphQL
- Responsive Design, optimized for Mobile devices
- url: https://caki0915.github.io/gatsby-starter-redux/
repo: https://github.com/caki0915/gatsby-starter-redux
description: n/a
tags:
- Styling:CSS-in-JS
- Redux
features:
- Redux and Redux-devtools.
- Emotion with a basic theme and SSR
- Typography.js
- Eslint rules based on Prettier and Airbnb
- url: http://gatsby-stellar.surge.sh/
repo: https://github.com/codebushi/gatsby-starter-stellar
description: Single page starter based on the Stellar site template
tags:
- HTML5UP
- Onepage
- Styling:SCSS
features:
- Designed by HTML5 UP
- Scroll friendly, responsive site. Can be used as a single or multi-page site.
- Sticky Navigation when scrolling.
- Scroll spy and smooth scrolling to different sections of the page.
- Styling with SCSS
- url: http://gatsby-strata.surge.sh/
repo: https://github.com/codebushi/gatsby-starter-strata
description: Single page starter based on the Strata site template
tags:
- Portfolio
- Onepage
- HTML5UP
- Styling:SCSS
features:
- Designed by HTML5 UP
- Super Simple, single page portfolio site
- Lightbox style React photo gallery
- Fully Responsive
- Styling with SCSS
- url: https://gatsby-starter-strict.netlify.com/
repo: https://github.com/kripod/gatsby-starter-strict
description: n/a
tags:
- Linting
features:
- A set of strict linting rules (based on the Airbnb JavaScript Style Guide)
- lint script
- Encourage automatic code formatting
- format script
- Prefer using Yarn for package management
- Use EditorConfig to maintain consistent coding styles between different editors and IDEs
- Integration with Visual Studio Code
- Pre-configured auto-formatting on file save
- Based on gatsby-starter-default
- url: https://gatsby-tachyons.netlify.com/
repo: https://github.com/pixelsign/gatsby-starter-tachyons
description: no description yet
tags:
- Styling:Other
features:
- Based on gatsby-starter-default
- Using Tachyons for CSS.
- url: https://gatsby-starter-tailwind.oddstronaut.com/
repo: https://github.com/taylorbryant/gatsby-starter-tailwind
description: A Gatsby v2 starter styled using Tailwind, a utility-first CSS framework. Uses Purgecss to remove unused CSS.
tags:
- Styling:Tailwind
features:
- Based on gatsby-starter-default
- Tailwind CSS Framework
- Removes unused CSS with Purgecss
- Includes responsive navigation and form examples
- url: http://portfolio-v3.surge.sh/
repo: https://github.com/amandeepmittal/gatsby-portfolio-v3
description: n/a
tags:
- Portfolio
features:
- Single Page, Timeline View
- A portfolio Developers and Product launchers
- Bring in Data, plug-n-play
- Responsive Design, optimized for Mobile devices
- Seo Friendly
- Uses Flexbox
- url: https://gatsby-starter-typescript-plus.netlify.com/
repo: https://github.com/resir014/gatsby-starter-typescript-plus
description: This is a starter kit for Gatsby.js websites written in TypeScript. It includes the bare essentials for you to get started (styling, Markdown parsing, minimal toolset).
tags:
- Styling:CSS-in-JS
- Language:TypeScript
- Markdown
features:
- TypeScript
- ESLint (with custom ESLint rules)
- Markdown rendering with Remark
- Basic component structure
- Styling with emotion
- url: https://haysclark.github.io/gatsby-starter-typescript/
repo: https://github.com/haysclark/gatsby-starter-typescript
description: n/a
tags:
- Language:TypeScript
features:
- TypeScript
- url: https://fabien0102-gatsby-starter.netlify.com/
repo: https://github.com/fabien0102/gatsby-starter
description: n/a
tags:
- Language:TypeScript
- Styling:Other
- Testing
features:
- Semantic-ui for styling
- TypeScript
- Offline support
- Web App Manifest
- Jest/Enzyme testing
- Storybook
- Markdown linting
- url: https://gatsby-starter-wordpress.netlify.com/
repo: https://github.com/GatsbyCentral/gatsby-starter-wordpress
description: Gatsby starter using WordPress as the content source.
tags:
- Styling:CSS-in-JS
- CMS:WordPress
features:
- All the features from gatsby-advanced-starter, plus
- Leverages the WordPress plugin for Gatsby for data
- Configured to work with WordPress Advanced Custom Fields
- Auto generated Navigation for your WordPress Pages
- Minimal UI and Styling — made to customize.
- Styled Components
- url: https://www.concisejavascript.org/
repo: https://github.com/rwieruch/open-crowd-fund
description: n/a
tags:
- Stripe
- Firebase
features:
- Open source crowdfunding for your own ideas
- Alternative for Kickstarter, GoFundMe, etc.
- Secured Credit Card payments with Stripe
- Storing of funding information in Firebase
- url: https://www.verious.io/
repo: https://github.com/cpinnix/verious-boilerplate
description: n/a
tags:
- Styling:Other
features:
- Components only. Bring your own data, plugins, etc.
- Bootstrap inspired grid system with Container, Row, Column components.
- Simple Navigation and Dropdown components.
- Baseline grid built in with modular scale across viewports.
- Abstract measurements utilize REM for spacing.
- One font to rule them all, Helvetica.
- url: https://gatsby-starter-blog-grommet.netlify.com/
repo: https://github.com/Ganevru/gatsby-starter-blog-grommet
description: Gatsby v2 starter for creating a blog. Based on Grommet v2 UI.