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

https://github.com/jpaddeo/cv

Personal CV made with Astro
https://github.com/jpaddeo/cv

Last synced: 2 months ago
JSON representation

Personal CV made with Astro

Awesome Lists containing this project

README

        

# Juan Pablo Addeo's CV / Resume

## 🚀 Project Structure

You'll see the following folders and files:

```text
/
├── public/
│ └── favicon.svg
├── src/
│ ├── components/
│ │ ├── icons/
│ │ │ ├── GitHub.astro
│ │ │ ├── LinkedIn.astro
│ │ │ ├── Mail.astro
│ │ │ ├── Phone.astro
│ │ │ ├── Worldwide.astro
│ │ │ └── X.astro
│ │ ├── sections/
│ │ │ ├── About.astro
│ │ │ ├── Education.astro
│ │ │ ├── Experience.astro
│ │ │ ├── Hero.astro
│ │ │ ├── Projects.astro
│ │ │ └── Skills.astro
│ │ ├── ui/
│ │ │ ├── ExperienceItem.astro
│ │ │ ├── HeroImage.astro
│ │ │ ├── Section.astro
│ │ │ ├── SocialLinkItem.astro
│ │ │ └── SocialLinks.astro
│ │ ├── KeyboardManager.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
│── cv.json
└── package.json
```

## 🧞 Commands

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

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