diff options
Diffstat (limited to 'packages/create-astro')
-rw-r--r-- | packages/create-astro/src/templates/starter/src/components/Tour.astro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/create-astro/src/templates/starter/src/components/Tour.astro b/packages/create-astro/src/templates/starter/src/components/Tour.astro index 2e2d9ea12..5c822fe75 100644 --- a/packages/create-astro/src/templates/starter/src/components/Tour.astro +++ b/packages/create-astro/src/templates/starter/src/components/Tour.astro @@ -1,3 +1,6 @@ +--- +import { Markdown } from 'astro/components'; +--- <article> <div class="banner"> <p><strong>🧑🚀 Seasoned astronaut?</strong> Delete this file. Have fun!</p> @@ -20,7 +23,7 @@ │ └── pages/ │ └── index.astro └── 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. |