Add SEO to Rewards Program Information page (#1320)

This commit is contained in:
Nitrrine
2023-08-21 23:20:18 +06:00
committed by GitHub
parent 12543be913
commit a420d5b203

View File

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