summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/basics/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/basics/README.md b/examples/basics/README.md
index 96e3e151d..85c775110 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.