Skip to content

Commit

Permalink
Refactor project structure and remove unused files; add Home componen…
Browse files Browse the repository at this point in the history
…t and Navbar
  • Loading branch information
vansh-codes committed Dec 31, 2024
1 parent 8d7492e commit 2a578ca
Show file tree
Hide file tree
Showing 179 changed files with 5,714 additions and 17,282 deletions.
28 changes: 27 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
.vscode
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
.env
.env.development
.env.production

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
37 changes: 37 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# GitHub Files
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
repo_structure.txt
SECURITY.md

# Node.js dependencies
node_modules/

# Build artifacts
dist/
build/

# Environment files
.env
.env.*
.github
.gitignore
.eslint.config.js
postcss.config.js
tsconfig.json
tsconfig.node.json
tsconfig.app.json
vite.config.ts

# Static files and assets
public/
src/assets
*.ico
*.png
*.jpg
*.svg

# Minified files
*.min.js
*.min.css
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"printWidth": 100,
"tabWidth": 2,
"jsxSingleQuote": true
}
Binary file removed 3d-effect-hypnosis-spiral-vector-7844424.jpg
Binary file not shown.
21 changes: 14 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ If you're new to Git and GitHub, no worries! Here are some useful resources:
# First Pull Request ✨

1. **Star this repository**
Click on the top right corner marked as **Stars** at last.
Click on the top right corner marked as **Stars** at last.

2. **Fork this repository**
Click on the top right corner marked as **Fork** at second last.
Click on the top right corner marked as **Fork** at second last.

3. **Clone the forked repository**

```bash
git clone https://github.com/<your-github-username>/ChaosWeb.git
```

4. **Navigate to the project directory**

```bash
Expand Down Expand Up @@ -82,36 +82,43 @@ git push -u origin <your_branch_name>
# Alternatively, contribute using GitHub Desktop 🖥️

1. **Open GitHub Desktop:**
Launch GitHub Desktop and log in to your GitHub account if you haven't already.
Launch GitHub Desktop and log in to your GitHub account if you haven't already.

2. **Clone the Repository:**

- If you haven't cloned the project repository yet, you can do so by clicking on the "File" menu and selecting "Clone Repository."
- Choose the project repository from the list of repositories on GitHub and clone it to your local machine.

3.**Switch to the Correct Branch:**
3.**Switch to the Correct Branch:**

- Ensure you are on the branch that you want to submit a pull request for.
- If you need to switch branches, you can do so by clicking on the "Current Branch" dropdown menu and selecting the desired branch.

4. **Make Changes:**

- Make your changes to the code or files in the repository using your preferred code editor.

5. **Commit Changes:**

- In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit.
- Enter a summary and description for your changes in the "Summary" and "Description" fields, respectively. Click the "Commit to <branch-name>" button to commit your changes to the local branch.

6. **Push Changes to GitHub:**

- After committing your changes, click the "Push origin" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub.

7. **Create a Pull Request:**

- Go to the GitHub website and navigate to your fork of the project repository.
- You should see a button to "Compare & pull request" between your fork and the original repository. Click on it.

8. **Review and Submit:**

- On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request.
- Once you're satisfied, click the "Create pull request" button to submit your pull request.

9. **Wait for Review:**
Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the project repository.
Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the project repository.

<br>

Expand Down Expand Up @@ -184,4 +191,4 @@ To report an issue, follow these steps:

We truly appreciate your time and effort to help improve our project. Feel free to reach out if you have any questions or need guidance. Happy coding! 🚀

##
##
228 changes: 0 additions & 228 deletions ConnectFour.html

This file was deleted.

Loading

0 comments on commit 2a578ca

Please sign in to comment.