Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Add SEO to Rewards Program Information page (#1320)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrrine authored Aug 21, 2023
1 parent 12543be commit a420d5b
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions pages/legal/cmp-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,36 @@
</template>

<script>
export default {
export default defineNuxtComponent({
name: 'CmpInfo',
}
head: {
title: 'Rewards Program Information - Modrinth',
meta: [
{
hid: 'description',
name: 'description',
content:
'The rewards program information of Modrinth, an open source modding platform focused on Minecraft.',
},
{
hid: 'apple-mobile-web-app-title',
name: 'apple-mobile-web-app-title',
content: 'Rewards Program Information',
},
{
hid: 'og:title',
name: 'og:title',
content: 'Rewards Program Information',
},
{
hid: 'og:url',
name: 'og:url',
content: 'https://modrinth.com/legal/cmp-info',
},
],
},
})
</script>

<style scoped></style>

0 comments on commit a420d5b

Please sign in to comment.