···11+# Astro Starter Kit: Basics
22+33+```sh
44+deno create astro@latest -- --template basics
55+```
66+77+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
88+99+## 🚀 Project Structure
1010+1111+Inside of your Astro project, you'll see the following folders and files:
1212+1313+```text
1414+/
1515+├── public/
1616+│ └── favicon.svg
1717+├── src
1818+│ ├── assets
1919+│ │ └── astro.svg
2020+│ ├── components
2121+│ │ └── Welcome.astro
2222+│ ├── layouts
2323+│ │ └── Layout.astro
2424+│ └── pages
2525+│ └── index.astro
2626+└── package.json
2727+```
2828+2929+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/).
3030+3131+## 🧞 Commands
3232+3333+All commands are run from the root of the project, from a terminal:
3434+3535+| Command | Action |
3636+| :------------------------ | :----------------------------------------------- |
3737+| `deno install` | Installs dependencies |
3838+| `deno dev` | Starts local dev server at `localhost:4321` |
3939+| `deno build` | Build your production site to `./dist/` |
4040+| `deno preview` | Preview your build locally, before deploying |
4141+| `deno astro ...` | Run CLI commands like `astro add`, `astro check` |
4242+| `deno astro -- --help` | Get help using the Astro CLI |
4343+4444+## 👀 Want to learn more?
4545+4646+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
···11+---
22+import Welcome from '../components/Welcome.astro';
33+import Layout from '../layouts/Layout.astro';
44+55+// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
66+// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
77+---
88+99+<Layout>
1010+ <Welcome />
1111+</Layout>