forked from bradtraversy/next-crash-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
33 lines (33 loc) · 1.99 KB
/
data.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
export const articles = [
{
id: '1',
title: 'GitHub introduces dark mode and auto-merge pull request',
excerpt:
'GitHub today announced a bunch of new features at its virtual GitHub...',
body:
'GitHub today announced a bunch of new features at its virtual GitHub Universe conference including dark mode, auto-merge pull requests, and Enterprise Server 3.0. In the past couple of years, almost all major apps have rolled out a dark theme for its users, so why not GitHub?',
},
{
id: '2',
title: 'What’s multi-cloud? And why should developers care?',
excerpt: 'Most developers don’t care about multi-cloud. But they should...',
body:
'Most developers don’t care about multi-cloud. But they should. Whether developers know it or not, their companies likely already have a multi-cloud environment. Multi-cloud is a strategy where a business selects different services from different cloud providers',
},
{
id: '3',
title: 'Here is how to make your website more accessible',
excerpt:
'An accessible website is one that’s optimized for all people, including those with disabilities...',
body:
'There are many things to consider when setting up a website, and accessibility is one factor that can sometimes be overlooked. An accessible website is one that’s optimized for all people, including those with impaired vision or hearing, motor difficulties, or learning disabilities',
},
{
id: '4',
title: 'Why open ecosystems are the future of app development',
excerpt:
'When app stores entered the mainstream tech culture, they exposed developers to an audience of millions...',
body:
'We can’t get enough of our mobile apps. There were 204 billion apps downloads last year, and that number is rising in 2020. When app stores entered the mainstream tech culture, they exposed developers to an audience of millions who were keen to adopt the innovative capabilities',
},
]