diff --git a/structure-folders.md b/structure-folders.md index 068c1bb..517ca4f 100644 --- a/structure-folders.md +++ b/structure-folders.md @@ -29,13 +29,13 @@ root/ - README.md ``` -These are the most common folders and files between the core project and the microservices. Some, like `client` are only present in the core repo, while others not shown, are only present in their specific `server/` directories (such as `server/auth/` in the auth-server). +These are the most common folders and files between the core project and the microservices. Some, like `client/` are only present in the core repo, while others not shown, are only present in their specific `server/` directories (such as `server/auth/` in the auth-server). ## Client -This folder structure is only in the core repo, and provides the client-facing React code. Most of the components are under `client/components` divided either as a full page, or as a panel (a reusable component on a larger page). +This folder structure is only in the core repo, and provides the client-facing React code. Most of the components are under `client/components/` divided either as full `pages`, or as `panels` (a reusable component on a larger page). -`client/markdown/` contains markdown files that are rendered as entire pages on their own, while `client/styles` contains the CSS files for specific or entire areas of the project. +`client/markdown/` contains markdown files that are rendered as entire pages on their own, while `client/styles/` contains the CSS files for specific or entire areas of the project. ## Common