···11-# Astro Starter Kit: Basics
22-33-```
44-npm create astro@latest -- --template basics
55-```
66-77-[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
88-[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
99-[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
1010-1111-> ๐งโ๐ **Seasoned astronaut?** Delete this file. Have fun!
1212-1313-
1414-1515-## ๐ Project Structure
1616-1717-Inside of your Astro project, you'll see the following folders and files:
11+# Portfolio Site
1821919-```
2020-/
2121-โโโ public/
2222-โ โโโ favicon.svg
2323-โโโ src/
2424-โ โโโ components/
2525-โ โ โโโ Card.astro
2626-โ โโโ layouts/
2727-โ โ โโโ Layout.astro
2828-โ โโโ pages/
2929-โ โโโ index.astro
3030-โโโ package.json
3131-```
3232-3333-Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
3434-3535-There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
3636-3737-Any static assets, like images, can be placed in the `public/` directory.
3838-3939-## ๐ง Commands
4040-4141-All commands are run from the root of the project, from a terminal:
4242-4343-| Command | Action |
4444-| :------------------------ | :----------------------------------------------- |
4545-| `npm install` | Installs dependencies |
4646-| `npm run dev` | Starts local dev server at `localhost:3000` |
4747-| `npm run build` | Build your production site to `./dist/` |
4848-| `npm run preview` | Preview your build locally, before deploying |
4949-| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
5050-| `npm run astro -- --help` | Get help using the Astro CLI |
5151-5252-## ๐ Want to learn more?
5353-5454-Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
33+This repo contains files for my portfolio site made in [Astro](https://astro.build).