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
- Host: GitHub
- URL: https://github.com/jpaddeo/cv
- Owner: jpaddeo
- Created: 2024-01-31T02:35:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-27T14:35:51.000Z (about 1 year ago)
- Last Synced: 2025-02-03T17:59:34.842Z (4 months ago)
- Language: Astro
- Size: 227 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |