Astro Home Page

Buy Me a Coffee

🚀 Project Structure

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

├── astro.config.mjs
├── bun.lockb
├── eslint.config.js
├── package.json
├── public
│   ├── ads.txt
│   ├── CNAME
│   ├── cute-rem-dancing.gif
│   ├── favicon.png
│   ├── fonts
│   │   └── Gotham-Font
│   │       ├── Gotham-Black.otf
│   │       ├── GothamBoldItalic.ttf
│   │       ├── Gotham-Bold.otf
│   │       ├── GothamBold.ttf
│   │       ├── Gotham-BookItalic.otf
│   │       ├── GothamBookItalic.ttf
│   │       ├── GothamBook.ttf
│   │       ├── GothamLightItalic.ttf
│   │       ├── Gotham-Light.otf
│   │       ├── GothamLight.ttf
│   │       ├── GothamMedium_1.ttf
│   │       ├── GothamMediumItalic.ttf
│   │      " ├── GothamMedium.ttf
│   │       ├── Gotham-ThinItalic.otf
│   │       ├── Gotham-Thin.otf
│   │       ├── Gotham-UltraItalic.otf
│   │       ├── Gotham-XLightItalic.otf
│   │       └── Gotham-XLight.otf
│   ├── humans.txt
│   └── robots.txt
├── README.md
├── src
│   ├── assets
│   │   ├── css
│   │   │   └── main.css
│   │   └── images
│   │       ├── 0001.webp
│   │       ├── 0002.webp
│   │       ├── 0003.webp
│   │       ├── 0004.webp
│   │       ├── cat-poly-cam.jpeg
│   │       └── cat-poly.jpeg
│   ├── components
│   │   ├── MainFooter.astro
│   │   ├── MainGalerry.astro
│   │   ├── MainGithub.astro
│   │   ├── MainHeoText.astro
│   │   └── MainNav.astro
│   ├── data
│   │   ├── gitApi.ts
│   │   └── main.ts
│   ├── env.d.ts
│   ├── icons
│   │   ├── coffee.svg
│   │   ├── discord.svg
│   │   ├── exclamation.svg
│   │   ├── facebook.svg
│   │   ├── Girl.astro
│   │   ├── github.svg
│   │   ├── git.svg
│   │   ├── instagram.svg
│   │   └── twitter.svg
│   ├── layouts
│   │   └── MainLayout.astro
│   └── pages
│       ├── index.astro
│       └── rem.astro
├── tailwind.config.mjs
└── tsconfig.json

13 directories, 58 files

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
bun install Installs dependencies
bun run dev Starts local dev server at localhost:4321
bun run build Build your production site to ./dist/
bun run preview Preview your build locally, before deploying
bun run astro ... Run CLI commands like astro add, astro check
bun run astro -- --help Get help using the Astro CLI