Skip to content

Commit

Permalink
social links
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangreve committed Jun 22, 2020
1 parent dc29d0b commit 9f6b1e0
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 17 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/libs
19 changes: 19 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
root: true,
env: {
browser: true,
node: true,
jasmine: true
},
extends: [
"plugin:vue/essential",
"eslint:recommended",
"prettier/vue",
"plugin:prettier/recommended"
],
rules: {
"vue/component-name-in-template-casing": ["error", "PascalCase"],
"no-console": process.env.NODE_ENV === "production" ? "off" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
}
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,4 @@ sw.*
# Vim swap files
*.swp
.firebase/
.firebaserc
20 changes: 3 additions & 17 deletions components/Sections/Presentation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
</li> -->

<li class="list-inline-item">
<a target="blank" href="https://www.linkedin.com/in/ivan-greve/">
<a target="blank" :href="$t('personalInfo.linkedin')">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin-in fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a target="blank" href="https://github.com/ivangreve/">
<a target="blank" :href="$t('personalInfo.github')">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-github-alt fa-stack-1x fa-inverse"></i>
Expand All @@ -61,21 +61,7 @@
<script>
export default {
data() {
return {
// personalInfo: {
// name: "Iván",
// lastName: "Greve",
// subHeadingText: [
// 'Software Enginneer',
// 'Full Stack Developer',
// 'Code enthusiast!'
// ],
// city: "Buenos Aires, Argentina",
// phoneNumber: "+54 - 6766-9851",
// email:"ivangreve@gmail.com",
// myDescription: "Passionate web developer, making useful application using the latest technologies"
// }
};
return {};
}
};
</script>
2 changes: 2 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"city": "Buenos Aires, Argentina",
"phoneNumber": "+54 - 6766-9851",
"email": "ivangreve@gmail.com",
"linkedin": "https://www.linkedin.com/in/ivan-greve/",
"github": "https://github.com/ivangreve/",
"myDescription": "Passionate web developer, making useful application using the latest technologies"
},
"educationDegrees": {
Expand Down
2 changes: 2 additions & 0 deletions locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"city": "Buenos Aires, Argentina",
"phoneNumber": "+54 - 6766-9851",
"email": "ivangreve@gmail.com",
"linkedin": "https://www.linkedin.com/in/ivan-greve/",
"github": "https://github.com/ivangreve/",
"myDescription": "Desarrollador web apasionado, desarrollando aplicaciones útiles siempre utilizando las últimas tecnologías!"
},
"educationDegrees": {
Expand Down

0 comments on commit 9f6b1e0

Please sign in to comment.