├── .gitignore ├── README.md ├── api └── now-playing.ts ├── components ├── NowPlaying.tsx ├── ReadmeImg.tsx └── Text.tsx ├── package.json ├── spotify-setup-guide.md ├── tsconfig.json ├── utils └── spotify.ts └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | .env 3 | node_modules 4 | .DS_STORE 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/README.md -------------------------------------------------------------------------------- /api/now-playing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/api/now-playing.ts -------------------------------------------------------------------------------- /components/NowPlaying.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/components/NowPlaying.tsx -------------------------------------------------------------------------------- /components/ReadmeImg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/components/ReadmeImg.tsx -------------------------------------------------------------------------------- /components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/components/Text.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/package.json -------------------------------------------------------------------------------- /spotify-setup-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/spotify-setup-guide.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/utils/spotify.ts -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshLmao/now-playing-profile/HEAD/vercel.json --------------------------------------------------------------------------------