- Astro: Web framework for building performant content-focused websites.
- Svelte: Front-end library that compiles declarative components into fast and lean web apps.
- TailwindCSS: Utility-first, component driven CSS framework.
/
├── public/
│ └── Static assets to be served.
├── src/
│ ├── content/
│ │ └── Content data.
│ ├── ui/
│ │ └── Reusable UI components.
│ ├── layouts/
│ │ └── Layouts.
│ └── utils/
│ └── Helper functions and shared constants.
│ └── pages/
│ └── Pages and co-located components and files.
└── Config files
Clone this repository:
git clone https://github.com/marioperezhurtado/arbicuir.git
cd arbicuir
Install dependencies:
npm install
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 |