Update project structure in README.md

This commit is contained in:
Emil Gulamov 2024-06-25 16:48:57 +04:00
parent 188f7b80b2
commit d81f8eb208

View file

@ -162,6 +162,9 @@ ScrewFast organizes modular components, content, and layouts to streamline devel
```md ```md
src/ src/
├── assets/
│ ├── scripts/ # JS scripts
│ └── styles/ # CSS styles
├── components/ # Reusable components ├── components/ # Reusable components
│ ├── Meta.astro # Meta component for SEO │ ├── Meta.astro # Meta component for SEO
│ ├── sections/ # Components for various sections of the website │ ├── sections/ # Components for various sections of the website
@ -187,7 +190,6 @@ src/
│ ├── products/ │ ├── products/
│ ├── robots.txt.ts # Dynamically generates robots.txt │ ├── robots.txt.ts # Dynamically generates robots.txt
│ └── services.astro │ └── services.astro
├── styles/ # CSS styles
└── utils/ # Shared utility functions and helpers └── utils/ # Shared utility functions and helpers
``` ```