├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── BackgroundProvider.tsx ├── Card │ ├── CardContent.tsx │ ├── CardDetail.tsx │ ├── CardPreview.tsx │ └── CardReflection.tsx ├── Layouts │ ├── Header.tsx │ └── Layout.tsx ├── PageInternal │ ├── Oracle.tsx │ ├── Protocol.tsx │ └── TextLayouts.tsx └── types.d.ts ├── data ├── backgrounds.ts ├── prompts.ts ├── protocols.ts ├── server.ts ├── suitIllustrations.ts └── times.ts ├── lib └── textTransform.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── [id].tsx ├── _app.tsx ├── _document.tsx ├── about.tsx ├── all.tsx └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles ├── globals.css └── tarotCard.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/README.md -------------------------------------------------------------------------------- /components/BackgroundProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/BackgroundProvider.tsx -------------------------------------------------------------------------------- /components/Card/CardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Card/CardContent.tsx -------------------------------------------------------------------------------- /components/Card/CardDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Card/CardDetail.tsx -------------------------------------------------------------------------------- /components/Card/CardPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Card/CardPreview.tsx -------------------------------------------------------------------------------- /components/Card/CardReflection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Card/CardReflection.tsx -------------------------------------------------------------------------------- /components/Layouts/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Layouts/Header.tsx -------------------------------------------------------------------------------- /components/Layouts/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/Layouts/Layout.tsx -------------------------------------------------------------------------------- /components/PageInternal/Oracle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/PageInternal/Oracle.tsx -------------------------------------------------------------------------------- /components/PageInternal/Protocol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/PageInternal/Protocol.tsx -------------------------------------------------------------------------------- /components/PageInternal/TextLayouts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/PageInternal/TextLayouts.tsx -------------------------------------------------------------------------------- /components/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/components/types.d.ts -------------------------------------------------------------------------------- /data/backgrounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/backgrounds.ts -------------------------------------------------------------------------------- /data/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/prompts.ts -------------------------------------------------------------------------------- /data/protocols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/protocols.ts -------------------------------------------------------------------------------- /data/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/server.ts -------------------------------------------------------------------------------- /data/suitIllustrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/suitIllustrations.ts -------------------------------------------------------------------------------- /data/times.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/data/times.ts -------------------------------------------------------------------------------- /lib/textTransform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/lib/textTransform.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/package.json -------------------------------------------------------------------------------- /pages/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/[id].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/all.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/all.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/tarotCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/styles/tarotCard.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soft-networks/remote-protocols/HEAD/tsconfig.json --------------------------------------------------------------------------------