aboutsummaryrefslogtreecommitdiff
path: root/examples/basics/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basics/README.md')
-rw-r--r--examples/basics/README.md8
1 files changed, 1 insertions, 7 deletions
diff --git a/examples/basics/README.md b/examples/basics/README.md
index 1db3fb399..ff19a3e7e 100644
--- a/examples/basics/README.md
+++ b/examples/basics/README.md
@@ -21,8 +21,6 @@ Inside of your Astro project, you'll see the following folders and files:
├── public/
│ └── favicon.svg
├── src/
-│ ├── components/
-│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
@@ -30,11 +28,7 @@ Inside of your Astro project, you'll see the following folders and files:
└── package.json
```
-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.
-
-Any static assets, like images, can be placed in the `public/` directory.
+To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
## 🧞 Commands