Additional categories + fix project creation

This commit is contained in:
Jai A
2022-07-31 20:19:41 -07:00
parent 278a56e580
commit 62e86f9507
4 changed files with 131 additions and 21 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div></div>
</template>
<script>
export default {
name: 'ResourcePacks',
asyncData(ctx) {
ctx.params.projectType = 'resourcepack'
},
head: {
title: 'Resource Packs - Modrinth',
meta: [
{
hid: 'apple-mobile-web-app-title',
name: 'apple-mobile-web-app-title',
content: 'Resource Packs - Modrinth',
},
{
hid: 'og:title',
name: 'og:title',
content: 'Resource Packs - Modrinth',
},
{
hid: 'og:url',
name: 'og:url',
content: `https://modrinth.com/resourcepacks`,
},
],
},
}
</script>
<style lang="scss" scoped></style>