diff options
| author | Kenimarru <[email protected]> | 2024-01-06 16:27:46 +0100 |
|---|---|---|
| committer | Kenimarru <[email protected]> | 2024-01-06 16:27:46 +0100 |
| commit | cd5cafea59fd10c98ff12152b9e233a087cf9c0b (patch) | |
| tree | c9212da5badcf911b897063315ec0c32525ddefa /components | |
| parent | v0.2.1 (diff) | |
| download | hiruku-cd5cafea59fd10c98ff12152b9e233a087cf9c0b.tar.xz hiruku-cd5cafea59fd10c98ff12152b9e233a087cf9c0b.zip | |
v0.2.2
Diffstat (limited to 'components')
| -rw-r--r-- | components/Header.vue | 4 | ||||
| -rw-r--r-- | components/Popular.vue | 2 | ||||
| -rw-r--r-- | components/Trending.vue | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/components/Header.vue b/components/Header.vue index 3d03c35..18113f0 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -1,6 +1,8 @@ <template> <section class="flex justify-between items-center py-4 px-8"> - <NuxtLink to="/" class="text-secondary text-4xl font-semibold">hiruki</NuxtLink> + <NuxtLink to="/"> + <h1 class="text-secondary text-4xl font-semibold">hiruki</h1> + </NuxtLink> <NuxtLink class="text-primary bg-secondary text-xl rounded-sm pb-1 px-1.5 hover:bg-opacity-75"> <Icon name="heroicons-solid:magnifying-glass" /> </NuxtLink> diff --git a/components/Popular.vue b/components/Popular.vue index 9584719..91a38f9 100644 --- a/components/Popular.vue +++ b/components/Popular.vue @@ -1,7 +1,7 @@ <template> <section class="space-y-4"> <section class="flex flex-col"> - <h1 class="text-secondary text-xl font-semibold">All Time Popular</h1> + <h2 class="text-secondary text-xl font-semibold">All Time Popular</h2> <p class="text-primary text-sm">Most Popular Anime</p> </section> <section class="grid grid-cols-2 md:grid-cols-8 gap-2"> diff --git a/components/Trending.vue b/components/Trending.vue index 572a4be..d3982c2 100644 --- a/components/Trending.vue +++ b/components/Trending.vue @@ -1,7 +1,7 @@ <template> <section class="space-y-4"> <section class="flex flex-col"> - <h1 class="text-secondary text-xl font-semibold">Trending Now</h1> + <h2 class="text-secondary text-xl font-semibold">Trending Now</h2> <p class="text-primary text-sm">Currently Trending Anime</p> </section> <section class="grid grid-cols-2 md:grid-cols-8 gap-2"> |