Skip to content

Commit 76cb4fd

Browse files
meganesuLekoArts
andauthored
docs(tutorial): add livestream links to parts 2-5, update start time for part 1 (#32434)
Co-authored-by: Lennart <[email protected]>
1 parent 00f7865 commit 76cb4fd

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed

docs/docs/tutorial/part-1/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If you'd rather follow along with a video, here's a recording of a livestream th
6060

6161
You can catch the stream live on Wednesdays at 10AM Pacific Time / 5PM UTC on the [Gatsby Twitch channel](https://www.twitch.tv/gatsbyjs).
6262

63-
<iframe width="560" height="315" src="https://www.youtube.com/embed/wr8rbaHUM6Q" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
63+
<iframe width="560" height="315" src="https://www.youtube.com/embed/wr8rbaHUM6Q?start=470" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
6464

6565
</Announcement>
6666

docs/docs/tutorial/part-2/index.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,18 @@ By the end of this part of the Tutorial, you will be able to:
4242
* Use component **props** to change the way a component renders.
4343
* Use the **`children`** prop to create a wrapper component.
4444

45+
<Announcement style={{marginBottom: "1.5rem"}}>
46+
47+
**Prefer a video?**
48+
49+
If you'd rather follow along with a video, here's a recording of a livestream that covers all the material for Part 2.
50+
51+
You can catch the stream live on Wednesdays at 10AM Pacific Time / 5PM UTC on the [Gatsby Twitch channel](https://www.twitch.tv/gatsbyjs).
52+
53+
<iframe width="560" height="315" src="https://www.youtube.com/embed/wXRrlEitw94?start=279" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
54+
55+
</Announcement>
56+
4557
## A quick intro to React
4658

4759
### What is React?

docs/docs/tutorial/part-3/index.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ By the end of this part of the Tutorial, you will be able to:
4141
* Add a plugin to your Gatsby site.
4242
* Configure your plugins in your `gatsby-config.js` file.
4343

44+
<Announcement style={{marginBottom: "1.5rem"}}>
45+
46+
**Prefer a video?**
47+
48+
If you'd rather follow along with a video, here's a recording of a livestream that covers all the material for Part 3.
49+
50+
You can catch the stream live on Wednesdays at 10AM Pacific Time / 5PM UTC on the [Gatsby Twitch channel](https://www.twitch.tv/gatsbyjs).
51+
52+
<iframe width="560" height="315" src="https://www.youtube.com/embed/C8YxdGGjvOg?start=228" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
53+
54+
</Announcement>
55+
4456
## What is a plugin?
4557

4658
In Gatsby terms, a **plugin** is a separate npm package that you install to add extra features to your site.

docs/docs/tutorial/part-4/index.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,18 @@ By the end of this part of the Tutorial, you will be able to:
5353
- Use the **`gatsby-source-filesystem`** plugin to pull data into your site from your computer's filesystem.
5454
- Create a **page query** to pull data into a page component.
5555

56+
<Announcement style={{marginBottom: "1.5rem"}}>
57+
58+
**Prefer a video?**
59+
60+
If you'd rather follow along with a video, here's a recording of a livestream that covers all the material for Part 4.
61+
62+
You can catch the stream live on Wednesdays at 10AM Pacific Time / 5PM UTC on the [Gatsby Twitch channel](https://www.twitch.tv/gatsbyjs).
63+
64+
<iframe width="560" height="315" src="https://www.youtube.com/embed/RnaM4Rt05vY?start=244" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
65+
66+
</Announcement>
67+
5668
## Meet Gatsby's GraphQL data layer
5769

5870
Gatsby has its own [GraphQL](https://graphql.org/) data layer where it keeps all the data for your site. But how does it work under the hood?

docs/docs/tutorial/part-5/index.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ By the end of this part of the Tutorial, you will be able to:
5050
- Use the `gatsby-plugin-mdx` plugin to render the contents of your MDX files on your Blog page.
5151
- Use the `sort` field to control the order of results in your GraphQL queries.
5252

53+
<Announcement style={{marginBottom: "1.5rem"}}>
54+
55+
**Prefer a video?**
56+
57+
If you'd rather follow along with a video, here's a recording of a livestream that covers all the material for Part 5.
58+
59+
You can catch the stream live on Wednesdays at 10AM Pacific Time / 5PM UTC on the [Gatsby Twitch channel](https://www.twitch.tv/gatsbyjs).
60+
61+
<iframe width="560" height="315" src="https://www.youtube.com/embed/k9n9HnRG3Ys?start=554" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
62+
63+
</Announcement>
64+
5365
## A closer look at Gatsby's GraphQL data layer
5466

5567
To understand how `gatsby-plugin-mdx` and other transformer plugins work, you need to know a bit more about how Gatsby’s GraphQL data layer works.

0 commit comments

Comments
 (0)