1
00:00:00,000 --> 00:00:03,000
In this section, we're going to build up

2
00:00:03,000 --> 00:00:07,000
on the application we built in the previous section,

3
00:00:07,000 --> 00:00:10,000
and we're going to add data fetching to it,

4
00:00:10,000 --> 00:00:15,000
which means we're no longer going to define the dummy news

5
00:00:16,000 --> 00:00:21,000
simply in our code and hard code them in our code,

6
00:00:21,000 --> 00:00:23,000
but instead, we're going to load them

7
00:00:23,000 --> 00:00:25,000
from a different data source.

8
00:00:25,000 --> 00:00:28,000
And therefore, in this section you will learn

9
00:00:28,000 --> 00:00:33,000
how you can fetch data and where you can fetch data

10
00:00:33,000 --> 00:00:36,000
in NextJS applications.

11
00:00:36,000 --> 00:00:41,000
You will learn how to fetch data from external APIs.

12
00:00:42,000 --> 00:00:46,000
And you will also learn how to directly load data

13
00:00:46,000 --> 00:00:50,000
from other sources like databases or files.

14
00:00:50,000 --> 00:00:52,000
And therefore, let's not waste any time.

15
00:00:52,000 --> 00:00:54,000
Let's dive right in.

