Skip to content

Commit

Permalink
Merge pull request #20 from zackha/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
zackha authored Jan 29, 2025
2 parents 161f9cf + 58c29c6 commit 289213a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
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
7 changes: 6 additions & 1 deletion app/components/Container.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="fzypcq">
<slot />
</div>
<div class="absolute h-dvh w-screen bg-cover bg-center blur transition-opacity duration-300" style="background-image: url('/bg/bg1.jpg')"></div>
<div class="iPbnzK"></div>
</div>
</template>

Expand All @@ -15,4 +15,9 @@
.fzypcq {
@apply z-10 mx-auto flex w-full max-w-sm flex-col items-center justify-center gap-4 p-5;
}
.iPbnzK {
@apply absolute h-dvh w-screen bg-cover bg-center blur transition-opacity duration-300;
background-image: url('/bg/bg1.jpg');
}
</style>
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 289213a

Please sign in to comment.