Skip to content

Commit 1268419

Browse files
authored
Merge pull request #6 from jcomte23/develop
Develop
2 parents 47086a2 + 8b5fc84 commit 1268419

File tree

6 files changed

+14
-55
lines changed

6 files changed

+14
-55
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88
branches: ["main"]
99
pull_request:
10-
branches: ["main"]
10+
branches: ["main" , "develop"]
1111

1212
# Permite ejecutar el workflow manualmente desde la pestaña Actions
1313
workflow_dispatch:

index.html

Lines changed: 9 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ <h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Javier Cómbita Téll
8686
</div>
8787
</section>
8888

89-
9089
<!-- Technical Skills Section -->
9190
<h2 class="text-start mb-4">Programming Languages</h2>
9291
<section class="row g-4 py-5 row-cols-1 row-cols-lg-4" id="technical-skills">
@@ -127,86 +126,42 @@ <h3 class="fs-4 text-body-emphasis">PHP</h3>
127126
</article>
128127
</section>
129128

130-
<!-- Technical Skills Section -->
129+
<!-- Databases Section -->
131130
<h2 class="text-start mb-4">Databases</h2>
132131
<section class="row g-4 py-5 row-cols-1 row-cols-lg-4" id="databases">
133132
<!-- MySQL -->
134133
<article class="feature col">
135-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
136-
<i class="bi bi-database px-2" width="1em" height="1em"></i>
134+
<div class="feature-icon d-inline-flex align-items-center justify-content-center fs-2 mb-3">
135+
<img class="w-100" src="public/logos/mysql.svg" alt="Logo mysql" width="100%">
137136
</div>
138-
<h3 class="fs-4 text-body-emphasis">MySQL</h3>
139137
<p>MySQL is a widely used open-source relational database management system. It's known for its speed, reliability, and flexibility, often used in web applications and content management systems.</p>
140138
</article>
141139

142140
<!-- PostgreSQL -->
143141
<article class="feature col">
144-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-success bg-gradient fs-2 mb-3">
145-
<i class="bi bi-database-fill px-2" width="1em" height="1em"></i>
142+
<div class="feature-icon w-100 d-inline-flex align-items-center justify-content-center fs-2 mb-3">
143+
<img class="w-50" src="public/logos/postgresql.svg" alt="Logo postgresql" width="100%">
146144
</div>
147-
<h3 class="fs-4 text-body-emphasis">PostgreSQL</h3>
148145
<p>PostgreSQL is an advanced open-source relational database system known for its robustness and support for complex queries, making it ideal for data-driven applications that require scalability and reliability.</p>
149146
</article>
150147

151148
<!-- MongoDB -->
152149
<article class="feature col">
153-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-warning bg-gradient fs-2 mb-3">
154-
<i class="bi bi-database-lock px-2" width="1em" height="1em"></i>
150+
<div class="feature-icon w-100 d-inline-flex align-items-center justify-content-center fs-2 mb-3">
151+
<img class="w-100" src="public/logos/mongodb.svg" alt="Logo mongodb">
155152
</div>
156-
<h3 class="fs-4 text-body-emphasis">MongoDB</h3>
157153
<p>MongoDB is a NoSQL database that stores data in a flexible, JSON-like format. It is highly scalable, allowing applications to handle large amounts of unstructured data efficiently. It's popular in modern web applications.</p>
158154
</article>
159155

160156
<!-- SQLite -->
161157
<article class="feature col">
162-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-danger bg-gradient fs-2 mb-3">
163-
<i class="bi bi-database-check px-2" width="1em" height="1em"></i>
158+
<div class="feature-icon d-inline-flex align-items-center justify-content-center fs-2 mb-3">
159+
<img class="w-100" src="public/logos/sqlite.svg" alt="Logo sqlite" width="100%">
164160
</div>
165-
<h3 class="fs-4 text-body-emphasis">SQLite</h3>
166161
<p>SQLite is a serverless, self-contained SQL database engine that is lightweight and fast. It's widely used in mobile apps, embedded systems, and small-to-medium-sized applications where a full database server is not required.</p>
167162
</article>
168163
</section>
169164

170-
<!-- Methodologies and Practices Section -->
171-
<h2 class="text-start mb-4">Metodologías y Prácticas</h2>
172-
<section class="row g-4 py-5 row-cols-1 row-cols-lg-4" id="methodologies-practices">
173-
<!-- Agile -->
174-
<article class="feature col">
175-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
176-
<i class="bi bi-arrow-repeat px-2" width="1em" height="1em"></i>
177-
</div>
178-
<h3 class="fs-4 text-body-emphasis">Agile</h3>
179-
<p>Agile is an iterative approach to software development that emphasizes flexibility, collaboration, and customer feedback. It allows teams to adapt quickly to changes and deliver value incrementally.</p>
180-
</article>
181-
182-
<!-- Scrum -->
183-
<article class="feature col">
184-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-success bg-gradient fs-2 mb-3">
185-
<i class="bi bi-check-circle px-2" width="1em" height="1em"></i>
186-
</div>
187-
<h3 class="fs-4 text-body-emphasis">Scrum</h3>
188-
<p>Scrum is a framework within Agile methodology that focuses on iterative cycles called "sprints". It helps teams deliver small increments of a product at regular intervals, fostering collaboration and quick feedback.</p>
189-
</article>
190-
191-
<!-- Test-Driven Development (TDD) -->
192-
<article class="feature col">
193-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-warning bg-gradient fs-2 mb-3">
194-
<i class="bi bi-journal-check px-2" width="1em" height="1em"></i>
195-
</div>
196-
<h3 class="fs-4 text-body-emphasis">Test-Driven Development (TDD)</h3>
197-
<p>TDD is a software development practice where tests are written before the code. It ensures that the code is reliable, maintainable, and meets the specified requirements from the outset of development.</p>
198-
</article>
199-
200-
<!-- Version Control with Git -->
201-
<article class="feature col">
202-
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-danger bg-gradient fs-2 mb-3">
203-
<i class="bi bi-code-slash px-2" width="1em" height="1em"></i>
204-
</div>
205-
<h3 class="fs-4 text-body-emphasis">Control de versiones con Git</h3>
206-
<p>Version control with Git allows developers to track changes, collaborate with teammates, and manage code effectively. Git enables efficient branching, merging, and resolving conflicts in large-scale projects.</p>
207-
</article>
208-
</section>
209-
210165

211166
<!-- Projects Section -->
212167
<section id="projects" class="py-5">

public/logos/mongodb.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)