Skip to content

Commit ca2e620

Browse files
committed
update
0 parents  commit ca2e620

34 files changed

Lines changed: 3081 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?

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
## GitHub Error Solve
3+
4+
**GES** or GitHub Error Solve, is an open-source project dedicated to resolving any errors or issues that may arise while using GitHub. Our primary objective is to empower individuals to feel comfortable and confident using the platform by providing comprehensive solutions to common problems.
5+
6+
<br>
7+
8+
## Tech stack used to build this website: <br>
9+
![HTML](https://img.shields.io/badge/html-F16529?style=for-the-badge&logo=html5&logoColor=white)
10+
![CSS](https://img.shields.io/badge/css-254BDD?style=for-the-badge&logo=css3&logoColor=white)
11+
![Tailwind](https://img.shields.io/badge/tailwindcss-C66394?style=for-the-badge&logo=tailwindcss&logoColor=white)
12+
![JavaScript](https://img.shields.io/badge/javascript-EFD81C?style=for-the-badge&logo=javascript&logoColor=white)
13+
![React](https://img.shields.io/badge/react-blue?style=for-the-badge&logo=react&logoColor=navyblue)
14+
![Vite](https://img.shields.io/badge/vite-5BB4FF?style=for-the-badge&logo=vite&logoColor=FFC018)
15+
<br>
16+
17+
### How to contribute.
18+
- Fork this repository.
19+
- Clone the repository.
20+
```console
21+
git clone git@github.com:<your github username>/github-error-solve.git
22+
```
23+
- Navigate to folder
24+
```console
25+
cd github-error-solve
26+
```
27+
- Install node dependencies
28+
```console
29+
npm i
30+
```
31+
- Start the project
32+
```console
33+
npm run dev
34+
```
35+
36+
**Troubleshoot**
37+
Facing problem starting the server or any other problem? Please let us know by raising an ![issue](https://github.com/devvsakib/github-error-solve/issues/new)
38+
39+
### **<p align="center">Please STAR the repository⭐</p>**
40+
41+
### Discord
42+
Join Us ![Sure](https://discord.gg/xwRbDwnbMr)
43+
44+
**Live Link <a href="https://github-error-solve.vercel.app" target="_blank">GES</a>**

index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>GitHub Error Solve - Opensource Projects</title>
8+
<link rel="stylesheet" href="./dist/output.css" />
9+
<link rel="preconnect" href="https://fonts.googleapis.com" />
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
11+
<link
12+
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap"
13+
rel="stylesheet"
14+
/>
15+
</head>
16+
<body>
17+
<div id="root"></div>
18+
<script type="module" src="/src/main.jsx"></script>
19+
<script src="../path/to/flowbite/dist/flowbite.min.js"></script>
20+
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)