diff --git a/pages/app.vue b/pages/app.vue index 14b913c6c..4c7cf9b6b 100644 --- a/pages/app.vue +++ b/pages/app.vue @@ -48,8 +48,8 @@ onMounted(() => { fetch('https://launcher-files.modrinth.com/updates.json') .then((res) => res.json()) .then((data) => { - macLinks.appleSilicon = data.platforms['darwin-aarch64'].url - macLinks.intel = data.platforms['darwin-x86_64'].url + macLinks.appleSilicon = data.platforms['darwin-aarch64'].install_urls[0] + macLinks.intel = data.platforms['darwin-x86_64'].install_urls[0] windowsLink.value = data.platforms['windows-x86_64'].url linuxLinks.appImage = data.platforms['linux-x86_64'].install_urls[1] linuxLinks.deb = data.platforms['linux-x86_64'].install_urls[0] @@ -96,6 +96,21 @@ const scrollToSection = () => { }) }) } + +useHead({ + title: 'Download the Modrinth App!', + meta: [{ name: 'The Modrinth App', content: 'An open source mod launcher unlike any other.' }], +}) + +useSeoMeta({ + title: 'The Modrinth App', + ogTitle: 'The Modrinth App', + description: 'Download the Modrinth App for Windows, Mac, and Linux.', + ogDescription: + 'The Modrinth App is a unique, open source launcher that allows you to play your favorite mods, and keep them up to date, all in one neat little package.', + ogImage: 'https://cdn.modrinth.com/modrinth-new.png?', + twitterCard: 'summary', +})