Skip to content

Commit e7a3438

Browse files
committed
Fix metatags
1 parent c03d480 commit e7a3438

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

nuxt/mixins/seo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ export default {
22
head() {
33
const { capitalize } = this.$options.filters
44
const customTitles = {
5-
siteName: 'Lightning Network Stores',
5+
siteName: 'Nostrich.fun',
66
fromTemplate: function (tag) {
7-
return `${capitalize(tag)} tag | Lightning Network Stores`
7+
return `${capitalize(tag)} tag | Nostrich.fun`
88
},
99
fromMapping: function (tag) {
1010
switch (tag.toLowerCase()) {

nuxt/pages/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@
198198
const tags = this.$route.query.tags.split(',')
199199
if (tags.length === 1) {
200200
const tag = this.$options.filters.capitalize(tags[0])
201-
return this.getMetadata(tag + ' tag | LNS',
202-
tag + ' tag at Lightning Network Stores', '/og/index.png')
201+
return this.getMetadata(tag + ' tag | Nostrich.fun',
202+
tag + ' tag at Nostrich.fun', '/og/index.png')
203203
}
204204
}
205205
},

nuxt/pages/store/_id.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ export default {
363363
mixins: [SocialMedia, Head],
364364
head() {
365365
return this.getMetadata(
366-
`${this.selectedStore.name} | Lightning Network Stores`,
366+
`${this.selectedStore.name} | Nostrich.fun`,
367367
this.selectedStore.description,
368368
this.baseURL + 'thumbnails/' + this.selectedStore.id + '_0.png'
369369
)

0 commit comments

Comments
 (0)