Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding two new react courses #759

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions packages/site/src/data/react/courses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const courseTags = [
'FaunaDB',
'sass',
'static site generation',
'fundamentals',
] as const

export const courses: Course<(typeof courseTags)[number]>[] = [
Expand Down Expand Up @@ -466,4 +467,27 @@ export const courses: Course<(typeof courseTags)[number]>[] = [
href: 'https://dropjs.com/',
tags: ['JavaScript marathon'],
},
{
title: 'React Visualized',
author: 'ui.dev',
image: 'https://react.gg/img/ui-logo.svg',
description: 'The interactive way to master modern React',
paymentType: 'paid',
level: 'intermediate',
format: 'interactive',
href: 'https://react.gg/visualized',
tags: ['hooks', 'state management', 'fundamentals'],
},
{
title: 'The Joy of React',
author: 'Josh W. Comeau',
image: 'https://www.joyofreact.com/me-avatar.jpg',
description:
'The all-new interactive learning experience that teaches you how to build rich, dynamic web apps with React.',
paymentType: 'paid',
level: 'intermediate',
format: 'interactive',
href: 'https://www.joyofreact.com/',
tags: ['hooks', 'state management', 'fundamentals'],
},
]