Style design

This commit is contained in:
2021-04-23 13:10:01 +02:00
parent e59e40b57d
commit 8ec2346cd4
5 changed files with 85 additions and 15 deletions

View File

@@ -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
},