File tree Expand file tree Collapse file tree 1 file changed +33
-28
lines changed
Expand file tree Collapse file tree 1 file changed +33
-28
lines changed Original file line number Diff line number Diff line change @@ -26,53 +26,58 @@ Inside of your Astro project, you'll see the following folders and files:
2626
2727``` text
2828.
29+ ├── abcd.code-workspace
2930├── astro.config.mjs
3031├── astro-i18next.config.mjs
31- ├── CHANGELOG.MD
32- ├── components.json
32+ ├── CHANGELOG.md
33+ ├── CNAME
3334├── docs
34- │ ├── README.md
35- │ └── pages.md # Documentation for all pages and their functionality
35+ │ ├── index.html
36+ │ └── README.md
37+ ├── guide
38+ │ ├── pages.md
39+ │ ├── style-guide.md
40+ │ └── todo.md
3641├── jsconfig.json
3742├── LICENSE
3843├── package.json
3944├── package-lock.json
40- ├── postcss.config.js
4145├── public
42- │ ├── 192x192.png
43- │ ├── 512x512.png
44- │ ├── android-chrome-192x192.png
45- │ ├── android-chrome-512x512.png
46- │ ├── apple-touch-icon.png
47- │ ├── favicon.svg
48- │ ├── logo-white.svg
46+ │ ├── assets
47+ │ ├── humans.txt
4948│ ├── manifest.webmanifest
50- │ ├── profile-placeholder.jpg
49+ │ ├── map
50+ │ ├── responses
5151│ ├── robots.txt
52+ │ ├── service-worker.js
5253│ ├── sitemap-index.html
54+ │ └── sounds
5355├── README.md
56+ ├── setup-hooks.sh
5457├── src
55- │ ├── assets
56- │ ├── components
57- │ ├── content
58+ ├── assets
59+ │ ├── icons
60+ │ ├── screenshots
61+ │ └── styles
62+ ├── components
63+ ├── content
64+ │ ├── article
65+ │ ├── blog
66+ │ ├── stories
67+ │ └── terms-and-conditions.md
68+ │ ├── content.config.ts
69+ │ ├── data
5870│ ├── env.d.ts
59- │ ├── hooks
60- │ ├── icons
71+ │ ├── env.patch.ts
6172│ ├── layouts
62- │ ├── libs
63- │ ├── locales
64- │ ├── mocks
65- │ ├── models
73+ │ ├── mappers
6674│ ├── pages
67- │ ├── postcss.config.cjs
6875│ ├── site.config.ts
69- │ ├── types.ts
76+ │ ├── types
7077│ └── utils
71- ├── tailwind.config.ts
72- ├── todo.md
7378├── tsconfig.eslint.json
74- ├ ── tsconfig.json
75- └── <project>.code-workspace
79+ └ ── tsconfig.json
80+
7681```
7782
7883and src
You can’t perform that action at this time.
0 commit comments