File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,37 @@ gatsby build
70
70
## Structure of code
71
71
72
72
73
+
74
+ ```
75
+ coderbunker
76
+ ├── locales
77
+ │ ├── en
78
+ │ │ └── translation.json // 👈 add EN string here
79
+ │ └── fr
80
+ │ └── translation.json // 👈 add FR string here
81
+ ├── src
82
+ │ ├── assets
83
+ │ │ ├── content
84
+ │ │ │ └── team.json // 👈 add team member info here
85
+ │ │ ├── fonts
86
+ │ │ ├── images
87
+ │ │ │ └── team // 👈 add team member image here
88
+ │ │ │ ├── 001_ricky_ng_adam.jpg
89
+ │ │ │ └── 002_etc...
90
+ │ │ └── pdfs // 👈 add the Retainer Agreement here
91
+ │ ├── components
92
+ │ │ ├── button.js
93
+ │ │ └── // reusable components, etc...
94
+ │ ├── pages
95
+ │ │ ├── 404.js
96
+ │ │ └── index.js
97
+ │ ├── pdfs
98
+ │ │ └── placeholder.pdf
99
+ │ └── styles
100
+ └── gatsby-browser.js
101
+
102
+ ```
103
+
73
104
## Team Content
74
105
75
106
You can’t perform that action at this time.
0 commit comments