├── .github ├── renovate.json └── workflows │ └── lint.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── LICENSE ├── README.md ├── bun.lockb ├── package.json ├── src ├── App.vue ├── assets │ └── favicon.jpg ├── components │ ├── Container.vue │ ├── Footer.vue │ ├── NamaWaifu.vue │ ├── Result.vue │ ├── TemplateBtn.vue │ └── Title.vue ├── data │ └── templates.ts ├── funcs │ └── toastify.ts ├── index.html ├── main.scss ├── main.ts ├── seo │ ├── robots.txt │ └── sitemap.xml ├── shared │ ├── Button.vue │ ├── Icon.vue │ ├── Input.vue │ └── Textarea.vue ├── styles │ ├── _font.scss │ ├── _mixin.scss │ ├── _nprogress.scss │ ├── _reset.scss │ ├── _toastify.scss │ ├── _variable.scss │ └── _webkit.scss └── types │ └── vue.d.ts ├── tsconfig.json └── vercel.json /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/assets/favicon.jpg -------------------------------------------------------------------------------- /src/components/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/Container.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/NamaWaifu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/NamaWaifu.vue -------------------------------------------------------------------------------- /src/components/Result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/Result.vue -------------------------------------------------------------------------------- /src/components/TemplateBtn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/TemplateBtn.vue -------------------------------------------------------------------------------- /src/components/Title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/components/Title.vue -------------------------------------------------------------------------------- /src/data/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/data/templates.ts -------------------------------------------------------------------------------- /src/funcs/toastify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/funcs/toastify.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/main.scss -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/seo/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/seo/robots.txt -------------------------------------------------------------------------------- /src/seo/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/seo/sitemap.xml -------------------------------------------------------------------------------- /src/shared/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/shared/Button.vue -------------------------------------------------------------------------------- /src/shared/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/shared/Icon.vue -------------------------------------------------------------------------------- /src/shared/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/shared/Input.vue -------------------------------------------------------------------------------- /src/shared/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/shared/Textarea.vue -------------------------------------------------------------------------------- /src/styles/_font.scss: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap'); 2 | -------------------------------------------------------------------------------- /src/styles/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_mixin.scss -------------------------------------------------------------------------------- /src/styles/_nprogress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_nprogress.scss -------------------------------------------------------------------------------- /src/styles/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_reset.scss -------------------------------------------------------------------------------- /src/styles/_toastify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_toastify.scss -------------------------------------------------------------------------------- /src/styles/_variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_variable.scss -------------------------------------------------------------------------------- /src/styles/_webkit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/styles/_webkit.scss -------------------------------------------------------------------------------- /src/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/src/types/vue.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azukashi/wangy-wangy/HEAD/vercel.json --------------------------------------------------------------------------------