├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── Album.tsx │ ├── AlbumProvider.tsx │ ├── Counter.tsx │ ├── SavedAlbums.tsx │ ├── action.tsx │ ├── chat.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── spotify.ts ├── components │ ├── theme-provider.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ └── tabs.tsx └── lib │ └── utils.ts ├── tailwind.config.js ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/Album.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/Album.tsx -------------------------------------------------------------------------------- /src/app/AlbumProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/AlbumProvider.tsx -------------------------------------------------------------------------------- /src/app/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/Counter.tsx -------------------------------------------------------------------------------- /src/app/SavedAlbums.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/SavedAlbums.tsx -------------------------------------------------------------------------------- /src/app/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/action.tsx -------------------------------------------------------------------------------- /src/app/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/chat.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/app/spotify.ts -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/streaming-sa-spotify/HEAD/tsconfig.json --------------------------------------------------------------------------------