From 0e47ad92aa30c0076fbf97fb047eaeec264026c1 Mon Sep 17 00:00:00 2001 From: Kenimarru Date: Sat, 6 Jan 2024 16:12:26 +0100 Subject: v0.2.1 --- app.vue | 16 ++++++++ assets/css/tailwind.scss | 11 ------ components/Details.vue | 89 +++++++++++++++++++++++++++--------------- components/Popular.vue | 22 ++++++++--- components/Recommendations.vue | 23 ----------- components/Trending.vue | 22 ++++++++--- nuxt.config.ts | 4 +- package-lock.json | 4 +- package.json | 2 +- 9 files changed, 110 insertions(+), 83 deletions(-) create mode 100644 app.vue delete mode 100644 assets/css/tailwind.scss delete mode 100644 components/Recommendations.vue diff --git a/app.vue b/app.vue new file mode 100644 index 0000000..66ade36 --- /dev/null +++ b/app.vue @@ -0,0 +1,16 @@ + + + \ No newline at end of file diff --git a/assets/css/tailwind.scss b/assets/css/tailwind.scss deleted file mode 100644 index f331009..0000000 --- a/assets/css/tailwind.scss +++ /dev/null @@ -1,11 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -* { - @apply scroll-smooth transition-all font-outfit -} - -body { - @apply bg-background -} \ No newline at end of file diff --git a/components/Details.vue b/components/Details.vue index 2983bab..a25ac70 100644 --- a/components/Details.vue +++ b/components/Details.vue @@ -1,43 +1,68 @@ \ No newline at end of file diff --git a/components/Popular.vue b/components/Popular.vue index 215fbfb..9584719 100644 --- a/components/Popular.vue +++ b/components/Popular.vue @@ -5,12 +5,12 @@

Most Popular Anime

- - -
{{ item.title.romaji }}
+ + +
{{ item.title }}
-

{{ item.format }}

-

{{ item.seasonYear }}

+

{{ item.type }}

+

{{ item.year }}

@@ -18,5 +18,15 @@ \ No newline at end of file diff --git a/components/Recommendations.vue b/components/Recommendations.vue deleted file mode 100644 index 238e300..0000000 --- a/components/Recommendations.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - \ No newline at end of file diff --git a/components/Trending.vue b/components/Trending.vue index efeb050..572a4be 100644 --- a/components/Trending.vue +++ b/components/Trending.vue @@ -5,12 +5,12 @@

Currently Trending Anime

- - -
{{ item.title.romaji }}
+ + +
{{ item.title }}
-

{{ item.format }}

-

{{ item.seasonYear }}

+

{{ item.type }}

+

{{ item.year }}

@@ -18,5 +18,15 @@ \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index 896dbac..5df5281 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,7 +1,7 @@ export default defineNuxtConfig({ modules: ["@nuxtjs/tailwindcss", "@nuxt/image", "@nuxtjs/google-fonts", "nuxt-icon"], - devtools: { enabled: false }, - tailwindcss: { viewer: false, cssPath: "./assets/css/tailwind.scss" }, + devtools: { enabled: true }, + tailwindcss: { viewer: false }, googleFonts: { families: { Outfit: [400, 500, 600, 700], diff --git a/package-lock.json b/package-lock.json index 1cc890b..d769cb6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "hiruki", - "version": "0.2.0", + "version": "0.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hiruki", - "version": "0.2.0", + "version": "0.2.1", "hasInstallScript": true, "devDependencies": { "@nuxt/image": "^1.1.0", diff --git a/package.json b/package.json index ecb8b59..e067dd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hiruki", - "version": "0.2.0", + "version": "0.2.1", "private": true, "type": "module", "scripts": { -- cgit v1.2.3