Skip to content

Commit

Permalink
added new features
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-dhangar committed Nov 23, 2024
1 parent 6c63e63 commit 70d2de8
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 4 deletions.
75 changes: 75 additions & 0 deletions src/data/certificates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ export type TechType =
| "css"
| "javascript"
| "bootstrap"
| "python"
| "jquery"
| "react"
| "nextjs"
| "typescript"
| "nodejs"
| "express"
| "ChatGPT"
| "mongodb";

export const certificates: Certificate[] = [
Expand Down Expand Up @@ -76,6 +79,78 @@ export const certificates: Certificate[] = [
imageUrl: "https://img-c.udemycdn.com/course/750x422/5458112_e6fd_2.jpg",
link: "https://www.udemy.com/course/full-stack-development-course-for-beginners/",
},
{
id: "8",
title: "Javascript Practicals Crash Course",
technology: ['javascript'],
description: "Learn javascript Concepts With Javascript Practical Demonstrations and Exercises.",
imageUrl: "https://img-c.udemycdn.com/course/750x422/4200228_c917_2.jpg",
link: "#",
},
{
id: "9",
title: "Practical CSS3 Mastery Course",
technology: ['css', 'html'],
description: "Learn CSS3 Flexbox, CSS3 Grid, CSS3 Transitions, CSS3 Animations, CSS3 Responsive Design, and so much more!",
imageUrl: "https://img-c.udemycdn.com/course/750x422/4281352_1712.jpg",
link: "https://www.udemy.com/certificate/UC-c7930bb3-2d2b-476b-912f-29b79532ff45/",
},
{
id: "10",
title: "ChatGPT for Mastering Compelling Content",
technology: ['ChatGPT'],
description: "Learn how to use OpenAI's ChatGPT to generate compelling content for your blog, website, or social media.",
imageUrl: "https://img-c.udemycdn.com/course/750x422/5672298_c693_2.jpg",
link: "https://www.udemy.com/certificate/UC-9474eb80-bcd9-4afb-bcc6-977155e26144/",
},
{
id: "11",
title: "Fullstack MERN Web-Development",
technology: ['react', 'nodejs', 'mongodb', 'express'],
description: "Learn MERN stack web development by building production ready social network with React, Node, Express, MongoDB and SocketIO",
imageUrl: "https://img-c.udemycdn.com/course/240x135/4656608_c525.jpg",
link: "https://www.udemy.com/course/fullstack-mern-web-development-free-content/",
},
{
id: "12",
title: "Python Quick Start 40-Minute Beginner's Guide",
technology: ['python'],
description: "Learn Python basics in 40 minutes! This is the perfect Python quick start guide for beginners.",
imageUrl: "https://img-c.udemycdn.com/course/480x270/6243407_9eb3.jpg",
link: "https://www.udemy.com/course/python-quick-start-40-minute-beginners-guide/",
},
{
id: "13",
title: "ChatGPT - The Complete Beginner Course on How to Use ChatGPT",
technology: ['ChatGPT'],
description: "Learn how to use OpenAI's ChatGPT to generate compelling content for your blog, website, or social media.",
imageUrl: "https://img-c.udemycdn.com/course/750x422/5033810_a59c_4.jpg",
link: "https://www.udemy.com/certificate/UC-c269cb98-956d-42ff-9cf0-16a148a271c5/",
},
{
id: "14",
title: "CSS Complete Course For Beginners",
technology: ['html', 'css'],
description: "Learn CSS for the first time or brush up your CSS skills and dive in even deeper. EVERY web developer has to know CSS.",
imageUrl: "https://img-c.udemycdn.com/course/480x270/4280734_2d17.jpg",
link: "https://www.udemy.com/certificate/UC-81a8f5c8-9ac2-496c-8d05-19dfdbc96609/",
},
// {
// id: "",
// title: "",
// technology: ['react'],
// description: "",
// imageUrl: "#",
// link: "",
// },
// {
// id: "",
// title: "",
// technology: ['react'],
// description: "",
// imageUrl: "#",
// link: "",
// },
// {
// id: "",
// title: "",
Expand Down
38 changes: 34 additions & 4 deletions src/data/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ export const projects = [
},
{
id: 2,
title: "CodeMastermindHQ",
des: "A platform for developers to learn and practice coding, providing a collaborative environment for learning and sharing.",
img: "/data/cmhq.png",
title: "Algo",
des: "Algo is a platform for developers to learn and practice data structures and algorithms through interactive coding challenges.",
img: "/data/algo.png",
iconLists: [
"/data/re.svg",
"/data/ts.svg",
Expand All @@ -91,7 +91,37 @@ export const projects = [
"/data/git.svg",
"/data/docusaurus.svg",
],
link: "https://cmhq.tech/",
link: "https://ajay-dhangar.github.io/algo",
},
{
id: 3,
title: "JavaScript Mastery",
des: "A platform for developers to learn and practice JavaScript through interactive coding challenges, tutorials, and projects.",
img: "/data/jsm.png",
iconLists: [
"/data/re.svg",
"/data/ts.svg",
"/data/js.svg",
"/data/css.svg",
"/data/git.svg",
"/data/docusaurus.svg",
],
link: "https://javascript-mastery.github.io/",
},
{
id: 4,
title: "AI Buddies",
des: "A platform for developers to learn and practice AI through interactive coding challenges, tutorials, and projects.",
img: "/data/ai-buddies.png",
iconLists: [
"/data/re.svg",
"/data/ts.svg",
"/data/js.svg",
"/data/css.svg",
"/data/git.svg",
"/data/docusaurus.svg",
],
link: "https://ai-buddies.github.io/",
},
];

Expand Down
Binary file added static/data/ai-buddies.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/data/algo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/data/jsm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 70d2de8

Please sign in to comment.