SEO cleanup (#1367)

* SEO/Metadata cleanup

May split rules changes into its own PR

* Revert rules/terms changes as they are now on a separate branch

* Update [searchProjectType].vue

* Update terms.vue
This commit is contained in:
Emma Alexia Triphora
2023-09-22 12:45:03 -04:00
committed by GitHub
parent bd4da4f365
commit fc64719bb8
29 changed files with 261 additions and 473 deletions
+9 -30
View File
@@ -63,35 +63,14 @@
</div>
</template>
<script>
export default defineNuxtComponent({
head: {
title: 'Rewards Program Terms - Modrinth',
meta: [
{
hid: 'description',
name: 'description',
content:
'The rewards program terms 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 Terms',
},
{
hid: 'og:title',
name: 'og:title',
content: 'Rewards Program Terms',
},
{
hid: 'og:url',
name: 'og:url',
content: 'https://modrinth.com/legal/cmp',
},
],
},
<script setup>
const description =
'The Rewards Program Terms of Modrinth, an open source modding platform focused on Minecraft.'
useSeoMeta({
title: 'Rewards Program Terms - Modrinth',
description,
ogTitle: 'Rewards Program Terms',
ogDescription: description,
})
</script>
<style lang="scss" scoped></style>