├── .gitignore ├── next-env.d.ts ├── package.json ├── postcss.config.js ├── src ├── hooks │ └── throttle.ts ├── layouts │ └── centered.tsx ├── pages │ ├── [id].tsx │ └── _app.tsx └── styles │ └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/hooks/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/src/hooks/throttle.ts -------------------------------------------------------------------------------- /src/layouts/centered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/src/layouts/centered.tsx -------------------------------------------------------------------------------- /src/pages/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/src/pages/[id].tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | body { 2 | @apply text-white bg-black; 3 | } 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/obs-spotify/HEAD/yarn.lock --------------------------------------------------------------------------------