Skip to content

Commit

Permalink
feat: new SEO materials
Browse files Browse the repository at this point in the history
  • Loading branch information
zackha committed Jan 29, 2025
1 parent 499b929 commit 58c29c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ const emptyHabits = computed(() => habits.value?.length === 0);
useHead({
htmlAttrs: { lang: 'en' },
link: [{ rel: 'icon', href: '/icon.png' }],
link: [
{ rel: 'icon', href: '/icon.png' },
{ rel: 'apple-touch-icon', href: '/icon.png' },
{ rel: 'msapplication-TileImage', href: '/icon.png' },
],
});
useSeoMeta({
Expand All @@ -23,6 +27,13 @@ useSeoMeta({
twitterCard: 'summary_large_image',
ogImage: '/social-card.png',
twitterImage: '/social-card.png',
ogType: 'website',
ogUrl: 'https://habit.vercel.app',
ogSiteName: 'Habit',
twitterCreator: '@ZHatlen',
twitterSite: '@ZHatlen',
robots: 'index, follow',
keywords: 'habit, tracker, daily, habits, management, tool, minimalistic',
});
</script>

Expand Down
Binary file modified public/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 58c29c6

Please sign in to comment.