From ed631329e731d31e384dacc1ec399ba60b7c906b Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 3 May 2021 12:15:13 -0500 Subject: `create-astro` UI (#164) * refactor: improve create-astro layout, build script * feat(create-astro): v0.1.0 * docs(create-astro): add README * feat(create-astro): add meta files to starter templates --- examples/starter/src/components/Tour.astro | 82 ------------------------------ examples/starter/src/pages/index.astro | 38 -------------- 2 files changed, 120 deletions(-) delete mode 100644 examples/starter/src/components/Tour.astro delete mode 100644 examples/starter/src/pages/index.astro (limited to 'examples/starter/src') diff --git a/examples/starter/src/components/Tour.astro b/examples/starter/src/components/Tour.astro deleted file mode 100644 index ca0cfafbf..000000000 --- a/examples/starter/src/components/Tour.astro +++ /dev/null @@ -1,82 +0,0 @@ -
- - -
-

🚀 Project Structure

-

Inside of your Astro project, you'll see the following folders and files:

- -
/
-├── public/
-│   ├── robots.txt
-│   └── favicon.ico
-├── src/
-│   ├── components/
-│   │   └── Tour.astro
-│   └── pages/
-│       └── index.astro
-└── package.json
-        
- -

- Astro looks for .astro or .md.astro 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.

-
- -
-

👀 Want to learn more?

-

Feel free to check our documentation or jump into our Discord server.

-
- -
- - diff --git a/examples/starter/src/pages/index.astro b/examples/starter/src/pages/index.astro deleted file mode 100644 index de052e9c4..000000000 --- a/examples/starter/src/pages/index.astro +++ /dev/null @@ -1,38 +0,0 @@ ---- -import Tour from '../components/Tour.astro'; ---- - - - - - - - Astro - - - - - - - - - -
-
-
- Astro logo -

Welcome to Astro

-
-
- - -
- - -- cgit v1.2.3