├── .eslintrc.json ├── .github └── workflows │ └── docker.yml ├── .gitignore ├── .prettierignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── apple-icon.png ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── server.ts ├── components.json ├── components ├── coin.tsx ├── divination.tsx ├── footer.tsx ├── header.tsx ├── hexagram.tsx ├── mode-toggle.tsx ├── question.tsx ├── result-ai.tsx ├── result.tsx ├── svg.tsx ├── ui │ ├── button.tsx │ ├── dropdown-menu.tsx │ └── textarea.tsx └── umami.tsx ├── docs └── screenshots.jpg ├── lib ├── animate.ts ├── constant.ts ├── data │ ├── gua-index.json │ ├── gua-list.json │ └── today.json └── utils.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public └── img │ ├── head.webp │ ├── tail.webp │ └── yin-yang.webp ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/README.md -------------------------------------------------------------------------------- /app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/apple-icon.png -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/app/server.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components.json -------------------------------------------------------------------------------- /components/coin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/coin.tsx -------------------------------------------------------------------------------- /components/divination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/divination.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/hexagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/hexagram.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/question.tsx -------------------------------------------------------------------------------- /components/result-ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/result-ai.tsx -------------------------------------------------------------------------------- /components/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/result.tsx -------------------------------------------------------------------------------- /components/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/svg.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/umami.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/components/umami.tsx -------------------------------------------------------------------------------- /docs/screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/docs/screenshots.jpg -------------------------------------------------------------------------------- /lib/animate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/animate.ts -------------------------------------------------------------------------------- /lib/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/constant.ts -------------------------------------------------------------------------------- /lib/data/gua-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/data/gua-index.json -------------------------------------------------------------------------------- /lib/data/gua-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/data/gua-list.json -------------------------------------------------------------------------------- /lib/data/today.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/data/today.json -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/img/head.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/public/img/head.webp -------------------------------------------------------------------------------- /public/img/tail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/public/img/tail.webp -------------------------------------------------------------------------------- /public/img/yin-yang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/public/img/yin-yang.webp -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunls24/divination/HEAD/tsconfig.json --------------------------------------------------------------------------------