Skip to content

Commit

Permalink
fix(About page): use internal link instead of opening additional brow…
Browse files Browse the repository at this point in the history
…ser tab
  • Loading branch information
AlejandroAkbal committed Sep 24, 2022
1 parent 25a3eba commit d49145b
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,39 @@
:links="[
{
text: 'Go to the Rule 34 App\'s Hentai',
href: '/',
href: generatePostsRouteWithDefaults(this.$nuxt.$store),
isInternal: true,
},
]"
icon='bg-svg-info'
text='This page is ranking first in search engines for some reason, if you are looking for the Hentai, click the link below.'
title='🔥 Hentai 🔥'
icon="bg-svg-info"
text="This page is ranking first in search engines for some reason, if you are looking for the Hentai, click the link below."
title="🔥 Hentai 🔥"
/>
</div>
</main>
</template>

<script>
import { RouterHelper } from '~/assets/js/RouterHelper'
export default {
methods: {
generatePostsRouteWithDefaults: RouterHelper.generatePostsRouteWithDefaults
},
head() {
return {
title: "About",
title: 'About',
meta: [
{
hid: "description",
name: "description",
content: "Information about the App."
hid: 'description',
name: 'description',
content: 'Information about the App.'
}
]
};
}
}
};
}
</script>

0 comments on commit d49145b

Please sign in to comment.