diff --git a/src/components/sections/About.vue b/src/components/sections/About.vue index 044d9ea..822af0d 100644 --- a/src/components/sections/About.vue +++ b/src/components/sections/About.vue @@ -10,7 +10,7 @@ Wybrane projekty + @click.native="scrollTo('.selected-projects')">Wybrane projekty Więcej o mnie @@ -128,6 +128,13 @@ export default { publicPath: process.env.BASE_URL } }, + methods: { + scrollTo (id) { + document.querySelector(id).scrollIntoView({ + behavior: 'smooth' + }) + } + }, components: { 'base-btn': BaseButton } diff --git a/src/components/sections/Experiences.vue b/src/components/sections/Experiences.vue index 75a2106..75dadcd 100644 --- a/src/components/sections/Experiences.vue +++ b/src/components/sections/Experiences.vue @@ -2,7 +2,11 @@

Wykorzystywane technologie

-

I have more than 10 years' experience building software for clients all over the world. Below is a quick overview of my main technical skill sets and technologies I use. Want to find out more about my experience? Check out my online resume and project portfolio.

+

+ Programowaniem stron internetowych zajmuję się najmłodszych lat, czyli od 2011 roku. Pierwsze projekty były + proste i najczęściej na użytek własny. Jednakże, doświadczenie zebrane przez lata pomogło mi wyselekcjonować + technologie, które wspomagają pisanie i rozwijanie oprogramowania. +

@@ -10,30 +14,30 @@
-

PHP & Laravel

+

{{ php.header }}

-
    -
  • One
  • -
  • Two
  • -
+

{{ php.description }}

+

{{ php.description.substr(0, 255) }}... Więcej

-

JavaScript Vanilla

+

{{ javascript.header }}

-

I have more than 10 years' experience building software for clients all over the world. Below is a quick overview of my main technical skill sets and technologies I use. Want to find out more about my experience? Check out my online resume and project portfolio.

+

{{ javascript.description }}

+

{{ javascript.description.substr(0, 255) }}... Więcej

-

Vue

+

{{ vue.header }}

-

I have more than 10 years' experience building software for clients all over the world. Below is a quick overview of my main technical skill sets and technologies I use. Want to find out more about my experience? Check out my online resume and project portfolio.

+

{{ vue.description }}

+

{{ vue.description.substr(0, 255) }}... Więcej

@@ -70,7 +74,32 @@ @@ -117,6 +146,11 @@ export default { } p { font-size: .9em; + + a { + color: #8D8D8D; + cursor: pointer; + } } &:hover { background-color: rgba(0, 0, 0, .03);