Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 46 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,52 @@ flowchart LR
- Push to the branch: `git push origin feature-name`
- Submit a pull request detailing your changes.

## Project Structure

```
recode-website/
|
├── .github/ 🔹 GitHub meta files
| ├── ISSUE_TEMPLATE/
| ├── workflows/
| └── pull_request_template.md
├── blog/ 🔹Project Blog
| ├── git-coding-agent/
| ├── google-backlinks/
| ├──...
├── community/ 🔹 Contributor Docs
| ├── contributing-guidelines.md
| ├── index.md
| ├── our-documentation.md
| └── understand-lint-checks.md
├── docs/ 🔹Documentation
| ├── GitHub/
| ├── Google-Student-Ambassador/
| ├── ...
├── src/ 🔹Source Code
| └── compenents/
| ├── css/
| └── custom.css
| ├── data/
| ├── database/
| ├── lib/
| ├── pages/
| ├── plugins/
| ├── services/
| ├── style/
| └── globals.css
| ├── theme/
| └── utils/
├── static/ 🔹 Public Assets
| ├── icons, img
| ├── .nojekyll
| └── *.png
├── .gitignore
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
└── ...
```

## License

Expand Down Expand Up @@ -136,6 +182,3 @@ Happy open-source contributions and here’s to your career success! 🎉
</a>

</div>



Loading