This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
sources-static.js
101 lines (94 loc) · 3.18 KB
/
sources-static.js
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
const static = [
// Resources
{
"title": "Jamstack Handbook",
"link": "https://jamstackhandbook.com/",
"source": {
"title": "Colby Fayock",
"link": "https://www.colbyfayock.com/"
}
},
{
"title": "50 Projects for React & the Static Web",
"link": "https://50reactprojects.com/",
"source": {
"title": "Colby Fayock",
"link": "https://www.colbyfayock.com/"
}
},
{
"title": "Journey to Dev",
"link": "https://journeyto.dev/",
"source": {
"title": "Colby Fayock",
"link": "https://www.colbyfayock.com/"
}
},
// egghead.io Courses
{
"title": "Create a New Github Action to Automate Code Tasks with Javascript",
"link": "https://egghead.io/playlists/create-a-new-github-action-to-automate-code-tasks-with-javascript-f1e9?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
},
{
"title": "Create an eCommerce Store with Next.js and Stripe Checkout",
"link": "https://egghead.io/playlists/create-an-ecommerce-store-with-next-js-and-stripe-checkout-562c?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
},
{
"title": "Quickly Create a New Company Website Managed by a CMS with TakeShape and Gatsby",
"link": "https://egghead.io/playlists/quickly-create-a-new-company-website-managed-by-a-cms-with-takeshape-and-gatsby-4e4d?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
},
{
"title": "Source and Create Nodes with Data from an API in Gatsby to Create a Pokemon Pokedex",
"link": "https://egghead.io/playlists/source-and-create-nodes-with-data-from-an-api-in-gatsby-to-create-a-pokemon-pokedex-5e28?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
},
{
"title": "Create, Manage, and Test API Requests with Postman",
"link": "https://egghead.io/playlists/create-manage-and-test-api-requests-with-postman-de1b?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
},
// External Articles
{
"title": "New to Jamstack? Everything You Need to Know to Get Started",
"link": "https://snipcart.com/blog/jamstack",
"source": {
"title": "Snipcart",
"link": "https://snipcart.com/blog?author=7049"
}
},
{
"title": "E-Commerce for React Developers [w/ Next.js Shop Tutorial]",
"link": "https://snipcart.com/blog/react-ecommerce-tutorial",
"source": {
"title": "Snipcart",
"link": "https://snipcart.com/blog?author=7049"
}
},
{
"title": "Build a Content Management System for an E-commerce Store with Next.js and Sanity",
"link": "https://egghead.io/learn/ecommerce/build-a-content-management-system-for-an-e-commerce-store-with-nextjs-and-sanity?af=atzgap",
"source": {
"title": "egghead.io",
"link": "https://egghead.io/instructors/colby-fayock?af=atzgap"
}
}
]
module.exports = static;