File tree Expand file tree Collapse file tree 1 file changed +46
-3
lines changed Expand file tree Collapse file tree 1 file changed +46
-3
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,52 @@ flowchart LR
84
84
- Push to the branch: `git push origin feature-name`
85
85
- Submit a pull request detailing your changes.
86
86
87
+ ## Project Structure
88
+
89
+ ```
90
+ recode-website/
91
+ |
92
+ ├── .github/ 🔹 GitHub meta files
93
+ | ├── ISSUE_TEMPLATE/
94
+ | ├── workflows/
95
+ | └── pull_request_template.md
96
+ ├── blog/ 🔹Project Blog
97
+ | ├── git-coding-agent/
98
+ | ├── google-backlinks/
99
+ | ├──...
100
+ ├── community/ 🔹 Contributor Docs
101
+ | ├── contributing-guidelines.md
102
+ | ├── index.md
103
+ | ├── our-documentation.md
104
+ | └── understand-lint-checks.md
105
+ ├── docs/ 🔹Documentation
106
+ | ├── GitHub/
107
+ | ├── Google-Student-Ambassador/
108
+ | ├── ...
109
+ ├── src/ 🔹Source Code
110
+ | └── compenents/
111
+ | ├── css/
112
+ | └── custom.css
113
+ | ├── data/
114
+ | ├── database/
115
+ | ├── lib/
116
+ | ├── pages/
117
+ | ├── plugins/
118
+ | ├── services/
119
+ | ├── style/
120
+ } └── globals.css
121
+ | ├── theme/
122
+ | └── utils/
123
+ ├── static/ 🔹 Public Assets
124
+ | ├── icons, img
125
+ | ├── .nojekyll
126
+ | └── *.png
127
+ ├── .gitignore
128
+ ├── CODE_OF_CONDUCT.md
129
+ ├── LICENSE
130
+ ├── README.md
131
+ └── ...
132
+ ```
87
133
88
134
## License
89
135
@@ -136,6 +182,3 @@ Happy open-source contributions and here’s to your career success! 🎉
136
182
< /a>
137
183
138
184
< /div>
139
-
140
-
141
-
You can’t perform that action at this time.
0 commit comments