update not found icons (#7289)

This commit is contained in:
Prospector
2026-08-24 16:29:24 -07:00
committed by GitHub
parent e753801e0c
commit 4b5edb9a99
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2075,7 +2075,7 @@ if (!route.name.startsWith('type-project-settings')) {
ogImage: () =>
project.value
? (project.value?.icon_url ?? 'https://cdn-raw.modrinth.com/placeholder-square.png')
: 'https://cdn-raw.modrinth.com/not-found-transparent.png',
: 'https://cdn-raw.modrinth.com/not-found.png',
ogUrl: createCanonicalUrl,
robots: () => (project.value?.status === 'approved' ? 'all' : 'noindex'),
})
+1 -1
View File
@@ -112,7 +112,7 @@ useSeoMeta({
ogImage: () =>
prefetchedUser
? (prefetchedUser?.avatar_url ?? 'https://cdn-raw.modrinth.com/placeholder-circle.png')
: 'https://cdn-raw.modrinth.com/not-found-transparent.png',
: 'https://cdn-raw.modrinth.com/not-found-circle.png',
})
const projectCreateModal = ref<InstanceType<typeof ProjectCreateModal> | null>(null)