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 | |
| parent | v0.2.1 (diff) | |
| download | hiruku-cd5cafea59fd10c98ff12152b9e233a087cf9c0b.tar.xz hiruku-cd5cafea59fd10c98ff12152b9e233a087cf9c0b.zip | |
v0.2.2
| -rw-r--r-- | components/Header.vue | 4 | ||||
| -rw-r--r-- | components/Popular.vue | 2 | ||||
| -rw-r--r-- | components/Trending.vue | 2 | ||||
| -rw-r--r-- | nuxt.config.ts | 11 | ||||
| -rw-r--r-- | package-lock.json | 4 | ||||
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | pages/dmca/index.vue | 4 |
7 files changed, 18 insertions, 11 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"> diff --git a/nuxt.config.ts b/nuxt.config.ts index 5df5281..3c48ebe 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -10,7 +10,7 @@ export default defineNuxtConfig({ }, app: { head: { - title: "Hiruki", + title: "Hiruki - Online Anime Streaming Without Ads", meta: [ { name: "description", @@ -26,7 +26,7 @@ export default defineNuxtConfig({ }, { property: "og:title", - content: "Hiruki", + content: "Hiruki - Online Anime Streaming Without Ads", }, { property: "og:description", @@ -38,7 +38,7 @@ export default defineNuxtConfig({ }, { property: "og:image", - content: "/apple-touch-icon.png", + content: "/public/apple-touch-icon.png", }, { property: "og:url", @@ -57,6 +57,11 @@ export default defineNuxtConfig({ { rel: "canonical", href: "https://hiruki.xyz/" + }, + { + rel: "shortcut icon", + type: "image/x-icon", + href: "/public/favicon.ico" } ] } diff --git a/package-lock.json b/package-lock.json index d769cb6..1d4c069 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "hiruki", - "version": "0.2.1", + "version": "0.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hiruki", - "version": "0.2.1", + "version": "0.2.2", "hasInstallScript": true, "devDependencies": { "@nuxt/image": "^1.1.0", diff --git a/package.json b/package.json index e067dd6..57d985c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hiruki", - "version": "0.2.1", + "version": "0.2.2", "private": true, "type": "module", "scripts": { diff --git a/pages/dmca/index.vue b/pages/dmca/index.vue index 79732ca..cbf756f 100644 --- a/pages/dmca/index.vue +++ b/pages/dmca/index.vue @@ -1,7 +1,7 @@ <template> <section class="space-y-4"> <section class="flex flex-col gap-2"> - <h1 class="text-primary text-3xl font-semibold">Disclaimer</h1> + <h2 class="text-primary text-3xl font-semibold">Disclaimer</h2> <p class="text-primary text-opacity-75">None of the files listed on hiruki.xyz are hosted on our servers. All links point to content hosted on third-party websites. hiruki.xyz does not accept responsibility for content hosted on third-party websites and has no involvement in the downloading/uploading of movies. We only post @@ -10,7 +10,7 @@ [email protected] and the content will be immediately removed.</p> </section> <section class="flex flex-col gap-2"> - <h1 class="text-primary text-3xl font-semibold">DMCA</h1> + <h2 class="text-primary text-3xl font-semibold">DMCA</h2> <p class="text-primary text-opacity-75">The Digital Millennium Copyright Act (DMCA) is a United States copyright law that implements two 1996 treaties of the World Intellectual Property Organization (WIPO). |