Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 JSamuel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
188 changes: 158 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,164 @@
# Portafolio Frontend
# Portafolio JSamuel

Mi proyecto para demostrar mis habilidades y darme a conocer como desarrollador web.
Sitio web estático para mostrar mis habilidades y darme a conocer como desarrollador web.

## Este portafolio fue hecho con
![Captura de pantalla de la página principal](https://github.com/user-attachments/assets/bd56b9c6-cd5c-4737-9be2-dcc68d3774ff)

- HTML
- Materialize CSS
- Sass
- Javascript
- Scroll Reveal
- Node js
- npm
## 🔎 Demo

## Características
[https://jsamuelap.github.io/](https://jsamuelap.github.io/)

## ✨ Características

- Responsivo
- Personalizado a mi marca personal
- Temas claro y oscuro
- Reconocimiento del tema del navegador
- Almacenamiento del tema en localstorage
- Dinámico con Javascript
- Animaciones

## Qué incluye

- Descripción sobre mí y lo que hago
- Tecnologías que conozco y que me gustaría aprender
- Algunos proyectos interesantes que he hecho últimamente
- Enlaces al código en Github
- Enlaces al proyecto en vivo
- Métodos para contactarme y conocerme más
- Correo electrónico
- Twitter
- LinkedIn
- Github
- Minimalista
- Descripción y datos de contacto
- Habilidades tecnológicas
- Historial laboral
- Proyectos
- Historial académico

## 🧰 Stack

### Frontend

![Astro](https://img.shields.io/badge/Astro-BC52EE?logo=astro&logoColor=white)
![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?logo=typescript&logoColor=white)
![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white)
![DaisyUI](https://img.shields.io/badge/DaisyUI-1AD1A5?logo=daisyui&logoColor=white)

### Herramientas

![Prettier](https://img.shields.io/badge/Prettier-F7B93E?logo=prettier&logoColor=gray)
![ESLint](https://img.shields.io/badge/ESLint-4B32C3?logo=eslint&logoColor=white)
![Commitlint](https://img.shields.io/badge/Commitlint-black?logo=commitlint&logoColor=white)
![Lint-staged](https://img.shields.io/badge/lint--staged-red)
![Husky](https://img.shields.io/badge/Husky-gray)
![GitHub Actions](https://img.shields.io/badge/GitHub_Actions-2088FF?logo=githubactions&logoColor=white)
![GitHub Pages](https://img.shields.io/badge/GitHub_Pages-222222?logo=githubpages&logoColor=white)

## 🗂️ Estructura del proyecto

```text
jsamuelap.github.io/
├── .github/
│ └── workflows/ # Flujos de trabajo de GitHub Actions
| └── ci.yml # Integración continua para los pull requests
| └── deploy.yml # Despliegue en GitHub Pages
├── public/
│ └── favicon.svg # Favicon del sitio
│ └── CV-Jose-Samuel-Aldana-Perez.pdf # Curriculum
├── src/
│ ├── assets/ # Recursos gráficos
│ │ └── images/
| | └── projects/ # Miniaturas de la sección Proyectos
| | └── skills/ # Iconos de las tecnologías de la sección Habilidades
| | └── jsamuel-logo.svg # Logo principal
│ ├── components/
│ │ ├── BottomNavbar.astro # Dock para pantalla mobile
│ │ ├── CardProject.astro # Tarjeta de proyecto
│ │ ├── Education.astro # Sección Educación
│ │ ├── Experience.astro # Sección Experiencia
│ │ ├── Footer.astro # Pie de página
│ │ ├── Hero.astro # Sección introductoria
│ │ ├── Navbar.astro # Barra de navegación para pantallas grandes
│ │ |── Projects.astro # Sección Proyectos
│ │ ├── SectionContainer.astro # Layout y encabezado para las secciones
│ │ ├── Skill.astro # Logo y texto para las tecnologías de la sección Habilidades
│ │ └── Skills.astro # Sección Habilidades
│ ├── config/
│ │ |── education.ts # Datos del historial académico
| | |── experience.ts # Datos del historial laboral
| | |── navigation.ts # Items del menu de navegación
| | |── projects.ts # Datos de los proyectos
| | └── skills.ts # Tecnologías y habilidades
│ ├── layouts/
│ │ └── BaseLayout.astro # Layout principal
│ ├── pages/
│ │ └── index.astro # Página principal
│ ├── styles/
│ │ └── global.css # Estilos globales y configuración de Tailwind y DaisyUI
│ └── utils/
│ └── utils.astro # Funciones de utilidad
├── .lintstagedrc # Configuración de lint-staged
├── .prettierignore # Archivos y carpetas ignorados por Prettier
├── .prettierrc # Configuración de Prettier
├── astro.config.mjs # Configuración de Astro
├── commitlint.config.js # Configuración de commitlint
├── eslint.config.js # Configuración de ESLint
├── package.json # Dependencias y scripts
└── tsconfig.json # Configuración deTypeScript
```

## 💻 Desarrollo local

Clonar el repositorio

```bash
git clone https://github.com/JSamuelAP/JSamuelAP.github.io.git
```

Ir al directorio

```bash
cd JSamuelAP.github.io
```

Instalar dependencias

```bash
npm install
```

Iniciar el servidor de desarrollo de Astro

```bash
npm run dev
```

### Otros scripts

Compilar proyecto y visualizarlo

```bash
npm run build
npm run preview
```

Analizar código con ESLint y arreglarlo

```bash
npm run lint
```

Formatear con Prettier

```bash
npm run format
```

Ejecutar ESLint y Prettier sobre los archivos en el stage

```bash
npx lint-staged
```

Probar si un mensaje de commit sigue las reglas de conventional commits

```bash
echo "test messages here" | node_modules/.bin/commitlint
```

## 🔗 Contacto

[![linkedin badge](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/jsamuelap/)

[![github badge](https://img.shields.io/badge/github-181717?style=for-the-badge&logo=github&logoColor=white)](https://github.com/JSamuelAP)

[![email badge](https://img.shields.io/badge/email-EA4335?style=for-the-badge&logo=gmail&logoColor=white)](mailto:sp4619168@gmail.com)

## ⚖️ Licencia

El código fuente de este proyecto está licenciado bajo la licencia [MIT](https://choosealicense.com/licenses/mit/).

Todos los recursos visuales (logotipos, imágenes, capturas de pantalla, marca personal) NO están cubiertos por esta licencia y no pueden reutilizarse sin permiso explícito.