Skip to content

Commit c7fcbb5

Browse files
committed
first commit
0 parents  commit c7fcbb5

34 files changed

Lines changed: 6573 additions & 0 deletions

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

CODE_OF_CONDUCT.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 🧑‍⚖️ Code of Conduct
2+
3+
We follow the **Contributor Covenant** to ensure a welcoming and inclusive community.
4+
5+
## 🌟 Our Pledge
6+
7+
In the interest of fostering an open and welcoming environment, we pledge to make participation in our project a harassment-free experience for everyone.
8+
9+
## 🚫 Unacceptable Behavior
10+
11+
- Harassment, hate speech, or discrimination
12+
- Trolling or insulting comments
13+
- Publishing others’ private info
14+
15+
## 📬 Reporting
16+
17+
If you witness or experience unacceptable behavior, please contact:
18+
📧 **dhangarajay13@gmail.com**

CONTRIBUTING.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# 🤝 Contribution Guidelines
2+
3+
Thank you for your interest in contributing to **Explore Courses** by CodeHarborHub!
4+
5+
## ✅ How to Contribute
6+
7+
1. **Fork** the repository
8+
2. **Clone** your fork:
9+
```bash
10+
git clone https://github.com/your-username/explore-courses.git
11+
cd explore-courses
12+
```
13+
14+
3. Create a new branch:
15+
16+
```bash
17+
git checkout -b add-new-course
18+
```
19+
4. Add your content under the appropriate section/folder.
20+
5. **Commit** your changes:
21+
22+
```bash
23+
git commit -m "Add: New free resource for [topic]"
24+
```
25+
6. **Push** the branch:
26+
27+
```bash
28+
git push origin add-new-course
29+
```
30+
7. Create a **Pull Request** from your fork to `main`.
31+
32+
---
33+
34+
## ✍️ Contribution Format
35+
36+
Each file should include:
37+
38+
* ✅ Course Title
39+
* 🔗 Course/Video/Website link
40+
* 🧾 Short Description
41+
* 📌 Tags or Level (Beginner, Intermediate, Advanced)
42+
43+
---
44+
45+
## 🙏 Thank You!
46+
47+
Let’s build something awesome together 🚀
48+
Happy Learning!

README.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# 🌐 CodeHarborHub: Explore Courses 📚
2+
3+
Welcome to **Explore Courses**, an official learning repository by [CodeHarborHub](https://github.com/codeharborhub) designed to help developers, students, and tech enthusiasts discover handpicked, beginner-to-advanced level **free courses**, tutorials, and structured paths to become job-ready.
4+
5+
---
6+
7+
## 🚀 What is Explore Courses?
8+
9+
`Explore Courses` is a curated collection of learning paths and free online courses across the following domains:
10+
11+
- 💻 Web Development (HTML, CSS, JS, React, MERN)
12+
- 🧠 AI & Machine Learning
13+
- 🧮 Data Structures & Algorithms (DSA)
14+
- 🛠️ Full-Stack Development
15+
- 💼 Career Readiness & Projects
16+
- ✨ And much more!
17+
18+
---
19+
20+
## 🧑‍💻 Who is this for?
21+
22+
* Students starting their tech journey
23+
* Developers looking to switch domains
24+
* Anyone who wants **free**, **organized**, and **quality** learning content
25+
26+
---
27+
28+
## ✨ Why Choose Explore Courses?
29+
30+
* 🔥 Curated by experienced devs
31+
* ✅ Beginner to Advanced friendly
32+
* 🌍 100% Open Source & Community Driven
33+
* 💡 Real-world projects included
34+
* 🚀 Updated with latest resources
35+
36+
---
37+
38+
## 🏁 How to Contribute?
39+
40+
We welcome contributions from the community! If you know a valuable free course or resource:
41+
42+
1. Fork this repo
43+
2. Add your content under the correct folder
44+
3. Create a pull request
45+
46+
> ✅ Follow our [Contribution Guidelines](./CONTRIBUTING.md) to get started!
47+
48+
---
49+
50+
## 🌐 Join the CodeHarborHub Community
51+
52+
📌 **Website:** [codeharborhub.github.io](https://codeharborhub.github.io)
53+
🐙 **GitHub:** [github.com/CodeHarborHub](https://github.com/CodeHarborHub)
54+
📢 **LinkedIn:** [CodeHarborHub on LinkedIn](https://linkedin.com/company/codeharborhub)
55+
56+
---
57+
58+
## 📄 License
59+
60+
This project is licensed under the **MIT License**.
61+
62+
---
63+
64+
> 🔖 *Made with ❤️ by [Ajay Dhangar](https://github.com/Ajay-Dhangar) and the CodeHarborHub Team*

eslint.config.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import js from '@eslint/js';
2+
import globals from 'globals';
3+
import reactHooks from 'eslint-plugin-react-hooks';
4+
import reactRefresh from 'eslint-plugin-react-refresh';
5+
import tseslint from 'typescript-eslint';
6+
7+
export default tseslint.config(
8+
{ ignores: ['dist'] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ['**/*.{ts,tsx}'],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
'react-hooks': reactHooks,
18+
'react-refresh': reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
'react-refresh/only-export-components': [
23+
'warn',
24+
{ allowConstantExport: true },
25+
],
26+
},
27+
}
28+
);

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>CodeHarborHub - Learn. Code. Thrive.</title>
8+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
9+
</head>
10+
<body>
11+
<div id="root"></div>
12+
<script type="module" src="/src/main.tsx"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)