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/ ├── src/
│ ├── assets/ │ ├── assets/
│ │ ├── images/ │ │ ├── images/
| | | └── ...
| | └── styles/ | | └── styles/
| | └── base.css | | └── base.css
│ ├── data/
| | └── posts/
| | └── post-1.md
| | └── ...
│ ├── components/ │ ├── components/
│ │ ├── astro/ │ │ ├── core/
| | | ├── headers/ | | ├── icons/
| | | ├── footers/ | | └── widgets/
| | | ── heros/ | | ── Header.astro
| | | └── ... | | └── Footer.astro
| | ├── react/ | | └── ...
| | └── ...
│ ├── layouts/ │ ├── layouts/
│ | ── Layout.astro │ | |── Base.astro
└── pages/ | └── ...
├── index.astro ├── pages/
| ── ... | ── blog/
│ | ├── index.astro
| | └── 404.astro
│ └── utils/
└── package.json └── package.json
└── ... └── ...
``` ```