Skip to content

Commit

Permalink
Home page and dependencies upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
luisjcenteno authored and LuisHCK committed Feb 13, 2024
1 parent cffd63e commit c867f7e
Show file tree
Hide file tree
Showing 8 changed files with 952 additions and 686 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install and Build 🔧
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: yarn

- run: yarn install --immutable --immutable-cache --check-cache
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.18.0
v20.10.0
2 changes: 1 addition & 1 deletion data/profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Luis J. Centeno
title: Full-Stack Web Developer
photo: /images/avatar.jpeg
about: Passionate full-stack web developer with more than
five years of experience in web development. Worked with
seven years of experience in web development. Worked with
backend technologies like Django, Ruby on Rails, Nodejs with
Expressjs, also in frontend with ReactJS, VueJS, and Angular.
Experienced in testing, CI/CD, git, remote working.
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path')
*/
module.exports = {
output: 'export',
distDir: 'dist',
distDir: 'out',
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"start": "next start"
},
"dependencies": {
"bulma": "^0.9.3",
"eslint-config-next": "^13.2.4",
"html-react-parser": "^1.4.8",
"marked": "^4.3.0",
"next": "^13.2.4",
"bulma": "^0.9.4",
"eslint-config-next": "^13.5.6",
"html-react-parser": "^5.1.4",
"marked": "^12.0.0",
"next": "13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ionicons": "^4.2.0",
"sass": "^1.49.9"
"react-ionicons": "^4.2.1",
"sass": "^1.70.0"
},
"devDependencies": {
"js-yaml-loader": "^1.2.2",
"styled-components": "^5.3.3"
"styled-components": "^6.1.8"
}
}
4 changes: 1 addition & 3 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,8 @@ const Home = () => {
<div className="column HomePage-scrollContainer">
<div className="HomePage-scrollArea">
<AboutMeBox description={Profile.about} />

<ProjectsBox projects={Projects} />

<WorkExperience jobs={WorkExp} />
<ProjectsBox projects={Projects} />
</div>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions styles/components/_timeline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
border-radius: 32px;
}

&:last-child {
border-bottom: none;
}

&:not(&:last-child) {
&::after {
content: ' ';
Expand Down
1,606 changes: 935 additions & 671 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit c867f7e

Please sign in to comment.