File tree 1 file changed +60
-0
lines changed
1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Project Structure 📂
2
+ ```
3
+ FitFlex
4
+ │
5
+ ├──.github
6
+ │ ├──ISSUE_TEMPLATE
7
+ │ ├──bug_report.yml
8
+ │ ├──custom.md
9
+ │ ├──documentation-update.yml
10
+ │ └── feature_request.yml
11
+ │
12
+ ├──context
13
+ │ └── blogContext.jsx
14
+ │
15
+ ├──diet-recommendation-api
16
+ │ └──app.py
17
+ │
18
+ ├──public
19
+ │ ├──robot.png
20
+ │ ├──robots.txt
21
+ │ ├──sitemap.xml
22
+ │ └──vite.svg
23
+ │
24
+ ├──src
25
+ │ ├──assets
26
+ │ ├──components
27
+ │ ├──context
28
+ │ ├──data
29
+ │ ├──fonts
30
+ │ ├──lib
31
+ │ ├──styles
32
+ │ ├──views
33
+ │ ├──App.css
34
+ │ ├──App.jsx
35
+ │ ├──index.css
36
+ │ ├──main.jsx
37
+ │ ├──metadata.js
38
+ │ └──root.jsx
39
+ │
40
+ ├──.env.example
41
+ ├──.eslintrc.cjs
42
+ ├──.gitignore
43
+ ├──CODE_OF_CONDUCT.md
44
+ ├──CONTRIBUTING.md
45
+ ├──Dockerfile
46
+ ├──LICENSE
47
+ ├──README.md
48
+ ├──SECURITY.md
49
+ ├──components.json
50
+ ├──generate-sitemap.js
51
+ ├──index.html
52
+ ├──netlify.toml
53
+ ├──package.json
54
+ ├──postcss.config.js
55
+ ├──tailwind.config.js
56
+ ├──tsconfig.app.json
57
+ ├──tsconfig.json
58
+ ├──tsconfig.node.json
59
+ └──vite.config.js
60
+ ```
You can’t perform that action at this time.
0 commit comments