Skip to content

Commit

Permalink
Updated project structure to only show the folders
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha-og committed Jan 7, 2024
1 parent fe56156 commit e4eea51
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,13 @@ The website, as of writing this Documentation, is a static SPA that has no backe

```bash
.
├── README.md
└── client
├── README.md
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── 404.html
│ └── vite.svg
├── src
│ ├── App.jsx
│ ├── assets
│ │ ├── constants.js
│ │ └── react.svg
│ ├── components
│ │ ├── Branding.jsx
│ │ ├── Footer.jsx
│ │ ├── MarkdownRenderer.jsx
│ │ ├── Navbar.jsx
│ │ ├── SubjectCard.jsx
│ │ ├── TopicCard.jsx
│ │ └── components.js
│ ├── index.css
│ ├── main.jsx
│ ├── pages
│ │ ├── About.jsx
│ │ ├── Home.jsx
│ │ ├── Notes.jsx
│ │ ├── PageNotFound.jsx
│ │ └── pages.js
│ └── store
│ ├── notesSlice.js
│ ├── redux.js
│ ├── subjectsSlice.js
│ ├── topicsSlice.js
│ └── userSlice.js
├── tailwind.config.js
└── vite.config.js
```

Since the project was initialised with Vite the file basic file structure is as expected from running `npm create vite@latest client` in the root directory of the repository. In addition to the `vite.config.js` there are also configuration files for tailwindcss (`tailwind.config.js`) and postcss (`postcss.config.js`), since I am using tailwind to style the UI and using postcss as a pre-processor.
Expand Down

0 comments on commit e4eea51

Please sign in to comment.