An open API service indexing awesome lists of open source software.

https://github.com/firsttris/astro-cv

Curriculum Vitae with Astro
https://github.com/firsttris/astro-cv

astro consulting curriculum-vitae cv freelancer freelancing react recruiter recruiting recruitment

Last synced: 3 months ago
JSON representation

Curriculum Vitae with Astro

Awesome Lists containing this project

README

        

# Curriculum Vitae with Astro

Curriculum Vitae with [Astro](https://astro.build/)

## Motivation

- Recruiters often request a CV in Word format to convert it to their layout, sometimes even altering the content. To prevent this, I decided to create an HTML CV that cannot be changed.
- A CV coded in JavaScript allows you to showcase your skills directly through the CV itself.
- It ensures consistent styling and format, making it easier to update the data.
- I wanted to create a multi-language CV.

## 🚀 Project Structure

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

```text
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```

Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.

There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the `public/` directory.

## 🧞 Commands

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 |

## 👀 Want to learn more?

Feel free to check [our documentation](https://docs.astro.build)