diff --git a/public/assets/me.png b/public/assets/me.png new file mode 100644 index 0000000..d4e6c69 Binary files /dev/null and b/public/assets/me.png differ diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue index 9d3c109..829fa30 100644 --- a/src/components/Navigation.vue +++ b/src/components/Navigation.vue @@ -1,17 +1,28 @@ + diff --git a/src/components/sections/About.vue b/src/components/sections/About.vue new file mode 100644 index 0000000..a2473a5 --- /dev/null +++ b/src/components/sections/About.vue @@ -0,0 +1,51 @@ + + + diff --git a/src/router/index.js b/src/router/index.js index b7f4378..319c3bc 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,12 +7,14 @@ import NotFound from '../views/NotFound' Vue.use(VueRouter) +const mainTitle = ' :: kamilcraft.com' + const routes = [ { path: '/', name: 'Home', meta: { - title: 'Witam serdecznie 😊' + title: 'Witam serdecznie 😊' + mainTitle }, component: Home }, @@ -20,7 +22,7 @@ const routes = [ path: '/projects', name: 'Projects', meta: { - title: 'Moje projekty' + title: 'Moje projekty' + mainTitle }, component: Projects }, @@ -28,7 +30,7 @@ const routes = [ path: '/about', name: 'About', meta: { - title: 'O mnie' + title: 'O mnie' + mainTitle }, component: About }, diff --git a/src/views/Home.vue b/src/views/Home.vue index dbefae4..40ad9c9 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,22 +1,19 @@