Skip to content

Commit 2eb8bca

Browse files
authored
Merge pull request #584 from patelkiran185/main
chore: Add new courses for absolute beginners in various categories
2 parents 2c8a3d2 + aa0265a commit 2eb8bca

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

src/data/courses/index.tsx

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,96 @@ const courses = [
102102
author: "Ajay Dhangar",
103103
link: "https://realpython.com/tutorials/projects/"
104104
},
105+
{
106+
id: 13,
107+
title: "Node for beginners",
108+
description: "This course is for absolute beginners who want to learn Node.",
109+
category: "node",
110+
imageUrl: "/img/svg/developer_activity.svg",
111+
author: "Ajay Dhangar",
112+
link: "https://www.freecodecamp.org/news/get-started-with-nodejs/"
113+
},
114+
{
115+
id: 14,
116+
title: "Mongodb Tutorial",
117+
description: "This course is for absolute beginners who want to learn Mongodb.",
118+
category: "mongodb",
119+
imageUrl: "/img/svg/developer_activity.svg",
120+
author: "Ajay Dhangar",
121+
link: "https://www.w3schools.com/mongodb/"
122+
},
123+
{
124+
id: 15,
125+
title: "SQL",
126+
description: "This course is for absolute beginners who want to learn SQL",
127+
category: "sql",
128+
imageUrl: "/img/svg/developer_activity.svg",
129+
author: "Ajay Dhangar",
130+
link: "https://www.w3schools.com/sql/"
131+
},
132+
{
133+
id: 16,
134+
title: "Express Js projects",
135+
description: "This course is for absolute beginners who want to learn Express Js projects",
136+
category: "express",
137+
imageUrl: "/img/svg/developer_activity.svg",
138+
author: "Ajay Dhangar",
139+
link: "https://www.geeksforgeeks.org/top-7-nodejs-project-ideas-for-beginners/"
140+
},
141+
{
142+
id: 17,
143+
title: "DSA",
144+
description: "This course is for absolute beginners who want to learn DSA.",
145+
category: "dsa",
146+
imageUrl: "/img/svg/developer_activity.svg",
147+
author: "Ajay Dhangar",
148+
link: "https://takeuforward.org/strivers-a2z-dsa-course/strivers-a2z-dsa-course-sheet-2"
149+
},
150+
{
151+
id: 18,
152+
title: "Redux",
153+
description: "This course is for absolute beginners who want to learn Redux.",
154+
category: "redux",
155+
imageUrl: "/img/svg/developer_activity.svg",
156+
author: "Ajay Dhangar",
157+
link: "https://www.freecodecamp.org/news/what-is-redux-store-actions-reducers-explained/"
158+
},
159+
{
160+
id: 19,
161+
title: "TypeScript Guide",
162+
description: "This course is for absolute beginners who want to learn TypeScript.",
163+
category: "typescript",
164+
imageUrl: "/img/svg/developer_activity.svg",
165+
author: "Ajay Dhangar",
166+
link: "https://www.freecodecamp.org/news/learn-typescript-beginners-guide/"
167+
},
168+
{
169+
id: 20,
170+
title: "Firebase",
171+
description: "This course is for absolute beginners who want to learn Firebase.",
172+
category: "firebase",
173+
imageUrl: "/img/svg/developer_activity.svg",
174+
author: "Ajay Dhangar",
175+
link: "https://www.tutorialspoint.com/firebase/index.html"
176+
},
177+
{
178+
id: 21,
179+
title: "AWS",
180+
description: "This course is for absolute beginners who want to learn AWS.",
181+
category: "aws",
182+
imageUrl: "/img/svg/developer_activity.svg",
183+
author: "Ajay Dhangar",
184+
link: "https://aws.amazon.com/getting-started/"
185+
},
186+
{
187+
id: 22,
188+
title: "Docker",
189+
description: "This course is for absolute beginners who want to learn Docker.",
190+
category: "docker",
191+
imageUrl: "/img/svg/developer_activity.svg",
192+
author: "Ajay Dhangar",
193+
link: "https://www.geeksforgeeks.org/docker-projects-ideas-for-beginners/"
194+
},
105195
];
106196

107197
export default courses;

0 commit comments

Comments
 (0)