Skip to content

Commit 8ca006e

Browse files
committed
Update courses data with Python Learning Path
1 parent e573f82 commit 8ca006e

File tree

1 file changed

+69
-49
lines changed

1 file changed

+69
-49
lines changed

src/database/courses/index.tsx

Lines changed: 69 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,70 @@
11
const courses = [
2-
{
3-
id: 1,
4-
title: "HTML Crash Course",
5-
description: "Learn HTML from scratch. This course is for absolute beginners who want to learn the HTML programming language.",
6-
category: "html",
7-
imageUrl: "https://www.freecodecamp.org/news/content/images/size/w2000/2021/08/ht-ml.jpeg",
8-
author: "FreeCodeCamp",
9-
link: "https://www.freecodecamp.org/news/html-crash-course/"
10-
},
11-
{
12-
id: 2,
13-
title: "CSS Learning Path",
14-
description: "Learn CSS from scratch. This course is for absolute beginners who want to learn the CSS programming language.",
15-
category: "css",
16-
imageUrl: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShBbSR9q_NR2b14VravJodaVo-rW5RYf8e0w&usqp=CAU",
17-
author: "Frontend Masters",
18-
link: "https://frontendmasters.com/learn/css/"
19-
},
20-
{
21-
id: 3,
22-
title: "JavaScript for Beginners",
23-
description: "Learn JavaScript from scratch. This course is for absolute beginners who want to learn the JavaScript programming language.",
24-
category: "javascript",
25-
imageUrl: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTcCYXBgQbUIL58YlTKTeLKh4qYDT5Aoy0QMGsiBtdixSOvP5rzdqKc_IrjpYL61zJ_6qE&usqp=CAU",
26-
author: "Ajay Dhangar (CHH)",
27-
link: "/code-harbor-hub/docs/category/javascript"
28-
},
29-
{
30-
id: 4,
31-
title: "DSA Learning Path",
32-
description: "Learn DSA from scratch. This course is for absolute beginners who want to learn the DSA programming language.",
33-
category: "dsa",
34-
imageUrl: "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20230726161506/Data-structure-algorithm-%E2%80%93-1-3.png",
35-
author: "GeeksforGeeks",
36-
link: "https://www.geeksforgeeks.org/data-structures/"
37-
},
38-
{
39-
id: 5,
40-
title: "React Learning Path",
41-
description: "Learn React from scratch. This course is for absolute beginners who want to learn the React programming language.",
42-
category: "react",
43-
imageUrl: "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20210122183844/How-to-Learn-ReactJS-in-2021.png",
44-
author: "React Docs",
45-
link: "https://reactjs.org/docs/getting-started.html"
46-
},
47-
];
48-
49-
export default courses;
50-
2+
{
3+
id: 1,
4+
title: "HTML Crash Course",
5+
description:
6+
"Learn HTML from scratch. This course is for absolute beginners who want to learn the HTML programming language.",
7+
category: "html",
8+
imageUrl:
9+
"https://www.freecodecamp.org/news/content/images/size/w2000/2021/08/ht-ml.jpeg",
10+
author: "FreeCodeCamp",
11+
link: "https://www.freecodecamp.org/news/html-crash-course/",
12+
},
13+
{
14+
id: 2,
15+
title: "CSS Learning Path",
16+
description:
17+
"Learn CSS from scratch. This course is for absolute beginners who want to learn the CSS programming language.",
18+
category: "css",
19+
imageUrl:
20+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShBbSR9q_NR2b14VravJodaVo-rW5RYf8e0w&usqp=CAU",
21+
author: "Frontend Masters",
22+
link: "https://frontendmasters.com/learn/css/",
23+
},
24+
{
25+
id: 3,
26+
title: "JavaScript for Beginners",
27+
description:
28+
"Learn JavaScript from scratch. This course is for absolute beginners who want to learn the JavaScript programming language.",
29+
category: "javascript",
30+
imageUrl:
31+
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTcCYXBgQbUIL58YlTKTeLKh4qYDT5Aoy0QMGsiBtdixSOvP5rzdqKc_IrjpYL61zJ_6qE&usqp=CAU",
32+
author: "Ajay Dhangar (CHH)",
33+
link: "/code-harbor-hub/docs/category/javascript",
34+
},
35+
{
36+
id: 4,
37+
title: "DSA Learning Path",
38+
description:
39+
"Learn DSA from scratch. This course is for absolute beginners who want to learn the DSA programming language.",
40+
category: "dsa",
41+
imageUrl:
42+
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20230726161506/Data-structure-algorithm-%E2%80%93-1-3.png",
43+
author: "GeeksforGeeks",
44+
link: "https://www.geeksforgeeks.org/data-structures/",
45+
},
46+
{
47+
id: 5,
48+
title: "React Learning Path",
49+
description:
50+
"Learn React from scratch. This course is for absolute beginners who want to learn the React programming language.",
51+
category: "react",
52+
imageUrl:
53+
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20210122183844/How-to-Learn-ReactJS-in-2021.png",
54+
author: "React Docs",
55+
link: "https://reactjs.org/docs/getting-started.html",
56+
},
57+
{
58+
id: 6,
59+
title: "Python Learning Path",
60+
description:
61+
"Learn Python from scratch. This course is for absolute beginners who want to learn the Python programming language.",
62+
category: "python",
63+
imageUrl:
64+
"https://www.freecodecamp.org/news/content/images/size/w2000/2022/03/pythonbobby.png",
65+
author:"freeCodeCamp",
66+
link:"https://www.freecodecamp.org/news/free-python-crash-course/",
67+
},
68+
];
69+
70+
export default courses;

0 commit comments

Comments
 (0)