From be2774b35767d3614fe679bf8a64d26deadffa2a Mon Sep 17 00:00:00 2001 From: Rui Saraiva Date: Mon, 22 Aug 2022 19:26:44 +0100 Subject: [PATCH] chore(basics): update README folder structure (#4417) --- examples/basics/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/basics/README.md b/examples/basics/README.md index 96e3e151de..85c775110a 100644 --- a/examples/basics/README.md +++ b/examples/basics/README.md @@ -14,6 +14,8 @@ Inside of your Astro project, you'll see the following folders and files: │ └── favicon.svg ├── src/ │ ├── components/ +│ │ └── Card.astro +│ ├── layouts/ │ │ └── Layout.astro │ └── pages/ │ └── index.astro @@ -22,7 +24,7 @@ Inside of your Astro project, you'll see the following folders and files: Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components or layouts. +There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. Any static assets, like images, can be placed in the `public/` directory.