-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathstarters.yml
1862 lines (1862 loc) · 63.4 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://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://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:
- 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://gatsby-tailwind-emotion-starter.netlify.com/
repo: https://github.com/muhajirframe/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/muhajirframe/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-userland.github.io/gatsby-contentful-starter/
repo: https://github.com/contentful-userland/gatsby-contentful-starter
description: n/a
tags:
- Blog
- Contentful
- Headless CMS
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://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://xiaoxinghu.github.io/gatsby-orga/
repo: https://github.com/xiaoxinghu/gatsby-orga
description: n/a
tags:
- Orga
features:
- Parses org-mode files with Orga.
- 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-blog-demo.netlify.com/
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-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
- Netlify CMS
features:
- Very similar to gatsby-starter-netlify-cms, slightly more configurable (eg 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
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
- Netlify CMS
- 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
- Contentful
- Headless CMS
features:
- Localization (Multilanguage)
- Dynamic content from Contentful CMS
- Integrates i18n plugin starter and using-contentful repos
- url: http://cranky-edison-12166d.netlify.com/
repo: https://github.com/datocms/gatsby-portfolio
description: n/a
tags:
- DatoCMS
- Headless CMS
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: https://gatsby-starter-default-demo.netlify.com/
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: 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: no description yet
tags:
- Styling:Semantic
- Stripe
- Moltin
features:
- Uses the Moltin eCommerce Api
- React 16 (gatsby-plugin-react-next)
- 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
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:
- Contentful
- Headless CMS
- Blog
- Netlify Form
- Styling:CSS-in-JS
features:
- 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.com/
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-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
- Netlify CMS
- Pagination
- Disqus
- RSS
- Linting
- 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 Form
- 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.com/
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-netlify-cms.netlify.com/
repo: https://github.com/netlify-templates/gatsby-starter-netlify-cms
description: n/a
tags:
- Blog
- Styling:Bulma
- Netlify CMS
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://gatsby-starter-personal-blog.greglobinski.com/
repo: https://github.com/greglobinski/gatsby-starter-personal-blog
description: n/a
tags:
- Blog
- Markdown
- Algolia
- Netlify Form
- 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
- 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
- Prismic
- Headless CMS
- 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: A portfolio starter for Gatsby. The target audience are designers and photographers. The playful & colorful Onepage has beautiful parallax effects (made possible by React Spring) and has a Hero, Projects, About and Contact section. The styling is defined by TailwindCSS which enables easy edits and a consistent look. General settings and colors can be changed in a config & theme file.
tags:
- Portfolio
- Onepage
- Styling:CSS-in-JS
- Styling:Tailwind
- PWA
- Linting
features:
- React Spring
- TailwindCSS & Styled Components
- Uses tailwind.macro (Babel macro) for easy TailwindCSS styling
- Playful & Colorful One-Page website with Parallax effect
- Easily configurable
- And other good stuff (SEO, Responsive images, Offline Support, WebApp Manifest Support)
- 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
features:
- Focus on big images (with gatsby-image)
- Dark Theme with HeroPatterns Header
- CSS Grid and styled-components
- Page transitions
- 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: A portfolio starter for Gatsby. The target audience are designers and photographers. The light themed website shows your work with large images in a full-width grid-layout. Choose color overlays for card items and your projects. The website has three pages (Index, About, Contact) and programmatically created pages for your projects. General settings and colors can be changed in a config & theme file.
tags:
- Portfolio
- MDX
- Transitions
- Styling:CSS-in-JS
- PWA
- Linting
features:
- Full-width photo grid-layout (with gatsby-image)
- Minimalistic light theme with large images
- Create your projects in MDX
- Styling with styled-components
- react-spring animations
- Easily configurable
- And other good stuff (SEO, Offline Support, WebApp Manifest Support)
- url: https://gatsby-starter-procyon.netlify.com/
repo: https://github.com/danielmahon/gatsby-starter-procyon
description: n/a
tags:
- PWA
- GraphCMS
- Headless CMS
- Apollo Client
- Styling:Material
- Netlify Identity
features:
- Gatsby + ReactJS (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
- 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
- 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:Tachyons
features:
- Based on gatsby-starter-default
- Using Tachyons for CSS.
- url: https://quizzical-mcclintock-0226ac.netlify.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
- TypeScript
- Markdown
features:
- TypeScript
- TSLint (with custom TSLint 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:
- TypeScript
features:
- TypeScript
- url: https://fabien0102-gatsby-starter.netlify.com/
repo: https://github.com/fabien0102/gatsby-starter
description: n/a
tags:
- TypeScript
- Styling:Semantic
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
- 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: GatsbyJS v2 starter for creating a blog. Based on Grommet v2 UI.
tags:
- Blog
- Markdown
- Styling:Grommet
- TypeScript
- Linting
- Redux
features:
- Grommet v2 UI
- Easily configurable - see site-config.js in the root
- Switch between grommet themes
- Change between light and dark themes (with Redux)
- Blog posts previews in card style
- Responsive Design, optimized for Mobile devices
- styled-components
- TypeScript and ESLint (typescript-eslint)
- lint-staged and husky - for linting before commit
- url: https://happy-pare-dff451.netlify.com/
repo: https://github.com/fhavrlent/gatsby-contentful-typescript-starter
description: Contentful and TypeScript starter based on default starter.
tags:
- Contentful
- Headless CMS
- TypeScript
- Styling:CSS-in-JS
features:
- Based on default starter
- TypeScript
- CSS in JS (Emotion)
- Contentful
- url: https://xylo-gatsby-bulma-starter.netlify.com/
repo: https://github.com/xydac/xylo-gatsby-bulma-starter
description: Gatsby v2 Starter with Bulma based on default starter.
tags:
- Styling:SCSS
- Styling:Bulma
features:
- Based on default starter
- Bulma Css
- Sass based Styling
- url: https://maxpou.github.io/gatsby-starter-morning-dew/
repo: https://github.com/maxpou/gatsby-starter-morning-dew
description: Gatsby v2 blog starter
tags:
- Blog
- Markdown
- PWA
- Disqus
- SEO
- Styling:CSS-in-JS
features:
- Blog post listing with previews (image + summary) for each blog post
- Fully configurable
- Multilang support (blog post only)
- Syntax highlighting
- css-in-js (with styled-components)
- Fully Responsive
- Tags
- Google Analytics
- Disqus comments support
- Offline support
- Web App Manifest
- ESLint
- Prettier
- Travis CI
- url: https://gatsby-starter-blog-jumpalottahigh.netlify.com/
repo: https://github.com/jumpalottahigh/gatsby-starter-blog-jumpalottahigh
description: Gatsby v2 blog starter with SEO, search, filter, reading progress, mobile menu fab
tags:
- Blog
- Markdown
features:
- Blog post listing with previews (image + summary) for each blog post
- Google structured data
- Mobile-friendly menu toggled with a floating action button (FAB)
- Article read progress
- User feedback component
- url: https://i18n.smakosh.com/
repo: https://github.com/smakosh/gatsby-starter-i18n
description: Gatsby v2 Starter with i18n using react-intl and more cool features.
tags:
- Styling:CSS-in-JS
- i18n
features:
- Based on default starter
- i18n with rtl text
- Stateless components using Recompose
- Font changes depending on the chosen language
- SEO (meta tags, openGraph, structured data, twitter and more...)
- url: https://gatsby-starter-mate.netlify.com
repo: https://github.com/EmaSuriano/gatsby-starter-mate
description: A portfolio starter for Gatsby integrated with Contentful CMS.
tags:
- Styling:CSS-in-JS
- Contentful
- Headless CMS
- Portfolio
features:
- Gatsby v2
- Rebass (Styled-components system)
- React Reveal
- Dynamic content from Contentful
- Offline support
- PWA ready
- SEO
- Responsive design
- Icons from font-awesome
- Netlify Deployment Friendly
- Medium integration
- Social sharing (Twitter, Facebook, Google, LinkedIn)
- url: https://gatsby-starter-typescript-sass.netlify.com
repo: https://github.com/tdharmon/gatsby-starter-typescript-sass
description: A basic starter with Typescript and Sass built in
tags:
- TypeScript
- Styling:SCSS
- Linting
features:
- TypeScript and Sass support
- TS linter with basic react rules
- url: https://gatsby-simple-contentful-starter.netlify.com/
repo: https://github.com/cwlsn/gatsby-simple-contentful-starter
description: A simple starter to display Contentful data in Gatsby, ready to deploy on Netlify. Comes with a detailed article detailing the process.
tags:
- Contentful
- Headless CMS
- Markdown
- Styling:CSS-in-JS
features:
- Gatsby v2
- Query Contentful data via Gatsby's GraphQL
- Styled-Components for CSS-in-JS
- Simple format, easy to create your own site quickly
- React Helmet for Header Modification
- Remark for loading Markdown into React
- url: https://gatsby-blog-cosmicjs.netlify.com/
repo: https://github.com/cosmicjs/gatsby-blog-cosmicjs
description: Blog that utilizes the power of the Cosmic JS headless CMS for easy content management
tags:
- Cosmic JS
- Headless CMS
- Blog
features:
- Uses the Cosmic JS Gatsby source plugin
- url: https://cosmicjs-gatsby-starter.netlify.com/
repo: https://github.com/cosmicjs/gatsby-starter
description: Simple Gatsby starter connected to the Cosmic JS headless CMS for easy content management
tags:
- Cosmic JS
- Headless CMS
features:
- Uses the Cosmic JS Gatsby source plugin
- url: https://www.gatsby-typescript-template.com/
repo: https://github.com/ikeryo1182/gatsby-typescript-template
description: This is a standard starter with Typescript, TSLint, Prettier, Lint-Staged(Husky) and Sass
tags:
- TypeScript
- Linting
- Styling:SCSS
features:
- Category and Tag for post
- Type Safe by TypeScript
- Format Safe by TSLint and Prettier with Lint-Staged(Husky)
- url: https://zandersparrow.github.io/gatsby-simple-redux/
repo: https://github.com/zandersparrow/gatsby-simple-redux
description: The default starter plus redux
tags:
- Redux
features:
- Minimal starter based on the official default
- Includes redux and a simple counter example
- url: https://gatsby-casper.netlify.com/
repo: https://github.com/scttcper/gatsby-casper
description: This is a starter blog that looks like the Ghost.io default theme, casper.
tags:
- Blog
- TypeScript
- Styling:CSS-in-JS