Skip to content

Commit

Permalink
feat(seo): Add meta descriptions to the setup and timer pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanziness committed Jul 12, 2021
1 parent 6f27d6d commit 09fe79b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ export default {
head () {
return {
title: `AnotherPomodoro: ${this.$i18n.t('setup.head').toLowerCase()}`
title: `AnotherPomodoro: ${this.$i18n.t('setup.head').toLowerCase()}`,
meta: [{
hid: 'description',
content: 'Set up AnotherPomdoro for use using this setup page.'
}]
}
},
Expand Down
4 changes: 4 additions & 0 deletions pages/timer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ export default {
head () {
return {
title: `(${this.remainingTimeString}) ${this.pageTitle}`,
meta: [{
hid: 'description',
content: 'Jumpstart your Pomodoro sessions with the timer of AnotherPomodoro.'
}],
link: [
{
rel: 'icon',
Expand Down

0 comments on commit 09fe79b

Please sign in to comment.