Inside of your Astro project, you'll see the following folders and files:
├── .astro/
├── .vscode/
├── public/
├── src/
│ └── components/
│ └── ArticleCard.astro
│ └── Footer.astro
│ └── MostRecentArticle.astro
│ └── Navbar.astro
│ └── Pagination.astro
│ └── SearchForm.astro
│ └── Tags.astro
│ └── content/
│ └── blog/
│ └── config.ts
│ └── images/
│ └── layouts/
│ └── MainLayout.astro
│ └── pages/
│ └── articles/
│ └── tag/
│ └── [...tag].astro
│ └── [...slug].astro
│ └── index.astro
│ └── search.astro
│ └── 404.astro
│ └── about.astro
│ └── index.astro
│ └── styles/
│ └── global.css
│ └── utils/
│ └── capitalizer.ts
│ └── dateFormatter.ts
└── .gitignore
└── astro.config.mjs
└── biome.json
└── package-lock.json
└── package.json
└── README.md
└── tailwind.config.mjs
└── tsconfig.json
The project was built using Astro with NPM as our package manager and also Biome as our linter tool.
As for the UI, we've used TailwindCSS along with some components from Flowbite.
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add , astro check |
npm run astro -- --help |
Get help using the Astro CLI |
© Done with a lot of ❤ by Hugo Ramon Pereira -> Portfolio -> LinkedIn 🇧🇷 .