Update project structure

This commit is contained in:
prototypa
2022-08-17 22:43:35 -04:00
parent 399f44c67b
commit dfee66bf9e

View File

@ -38,22 +38,27 @@ Inside AstroWind template, you'll see the following folders and files:
├── src/
│ ├── assets/
│ │ ├── images/
| | | └── ...
| | └── styles/
| | └── base.css
│ ├── data/
| | └── posts/
| | └── post-1.md
| | └── ...
│ ├── components/
│ │ ├── astro/
| | | ├── headers/
| | | ├── footers/
| | | ── heros/
| | | └── ...
| | ├── react/
| | └── ...
│ │ ├── core/
| | ├── icons/
| | └── widgets/
| | ── Header.astro
| | └── Footer.astro
| | └── ...
│ ├── layouts/
│ | ── Layout.astro
└── pages/
├── index.astro
| ── ...
│ | |── Base.astro
| └── ...
├── pages/
| ── blog/
│ | ├── index.astro
| | └── 404.astro
│ └── utils/
└── package.json
└── ...
```