├── .gitignore ├── assets ├── add.svg ├── album.jpg ├── avatar.jpg ├── chevronLeft.svg ├── chevronRight.svg ├── disc.svg ├── download.svg ├── friend.svg ├── heart.svg ├── home.svg ├── more.svg ├── next.svg ├── pause.svg ├── play.svg ├── playRounded.svg ├── playlist.svg ├── previous.svg ├── repeat.svg ├── search.svg ├── shuffle.svg ├── speaker.svg └── time.svg ├── components ├── UploadModal.js ├── activity.js ├── activityCard.js ├── header.js ├── login.js ├── nav.js ├── navLink.js ├── payment.js ├── playerControls.js ├── playlist.js ├── table │ └── tableRow.js └── uploadButton.js ├── context ├── WalletConnectionProvider.js └── context.js ├── data ├── activities.js └── songs.js ├── hooks └── useSpotify.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ └── upload_music.js ├── homepage.js └── index.js ├── postcss.config.js ├── public ├── assets │ ├── add.svg │ ├── album.jpg │ ├── avatar.jpg │ ├── chevronLeft.svg │ ├── chevronRight.svg │ ├── disc.svg │ ├── download.svg │ ├── friend.svg │ ├── heart.svg │ ├── home.svg │ ├── more.svg │ ├── next.svg │ ├── play.svg │ ├── playRounded.svg │ ├── playlist.svg │ ├── previous.svg │ ├── repeat.svg │ ├── search.svg │ ├── shuffle.svg │ ├── speaker.svg │ └── time.svg ├── favicon.ico └── vercel.svg ├── readme.md ├── styles ├── Home.module.css ├── UploadModal.module.css └── globals.css ├── tailwind.config.js ├── utils ├── const.js ├── spotify.json └── utils.js └── wallet.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/add.svg -------------------------------------------------------------------------------- /assets/album.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/album.jpg -------------------------------------------------------------------------------- /assets/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/avatar.jpg -------------------------------------------------------------------------------- /assets/chevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/chevronLeft.svg -------------------------------------------------------------------------------- /assets/chevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/chevronRight.svg -------------------------------------------------------------------------------- /assets/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/disc.svg -------------------------------------------------------------------------------- /assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/download.svg -------------------------------------------------------------------------------- /assets/friend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/friend.svg -------------------------------------------------------------------------------- /assets/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/heart.svg -------------------------------------------------------------------------------- /assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/home.svg -------------------------------------------------------------------------------- /assets/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/more.svg -------------------------------------------------------------------------------- /assets/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/next.svg -------------------------------------------------------------------------------- /assets/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/pause.svg -------------------------------------------------------------------------------- /assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/play.svg -------------------------------------------------------------------------------- /assets/playRounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/playRounded.svg -------------------------------------------------------------------------------- /assets/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/playlist.svg -------------------------------------------------------------------------------- /assets/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/previous.svg -------------------------------------------------------------------------------- /assets/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/repeat.svg -------------------------------------------------------------------------------- /assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/search.svg -------------------------------------------------------------------------------- /assets/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/shuffle.svg -------------------------------------------------------------------------------- /assets/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/speaker.svg -------------------------------------------------------------------------------- /assets/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/assets/time.svg -------------------------------------------------------------------------------- /components/UploadModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/UploadModal.js -------------------------------------------------------------------------------- /components/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/activity.js -------------------------------------------------------------------------------- /components/activityCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/activityCard.js -------------------------------------------------------------------------------- /components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/header.js -------------------------------------------------------------------------------- /components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/login.js -------------------------------------------------------------------------------- /components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/nav.js -------------------------------------------------------------------------------- /components/navLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/navLink.js -------------------------------------------------------------------------------- /components/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/payment.js -------------------------------------------------------------------------------- /components/playerControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/playerControls.js -------------------------------------------------------------------------------- /components/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/playlist.js -------------------------------------------------------------------------------- /components/table/tableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/table/tableRow.js -------------------------------------------------------------------------------- /components/uploadButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/components/uploadButton.js -------------------------------------------------------------------------------- /context/WalletConnectionProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/context/WalletConnectionProvider.js -------------------------------------------------------------------------------- /context/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/context/context.js -------------------------------------------------------------------------------- /data/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/data/activities.js -------------------------------------------------------------------------------- /data/songs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/data/songs.js -------------------------------------------------------------------------------- /hooks/useSpotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/hooks/useSpotify.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/upload_music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/pages/api/upload_music.js -------------------------------------------------------------------------------- /pages/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/pages/homepage.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/pages/index.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/add.svg -------------------------------------------------------------------------------- /public/assets/album.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/album.jpg -------------------------------------------------------------------------------- /public/assets/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/avatar.jpg -------------------------------------------------------------------------------- /public/assets/chevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/chevronLeft.svg -------------------------------------------------------------------------------- /public/assets/chevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/chevronRight.svg -------------------------------------------------------------------------------- /public/assets/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/disc.svg -------------------------------------------------------------------------------- /public/assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/download.svg -------------------------------------------------------------------------------- /public/assets/friend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/friend.svg -------------------------------------------------------------------------------- /public/assets/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/heart.svg -------------------------------------------------------------------------------- /public/assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/home.svg -------------------------------------------------------------------------------- /public/assets/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/more.svg -------------------------------------------------------------------------------- /public/assets/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/next.svg -------------------------------------------------------------------------------- /public/assets/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/play.svg -------------------------------------------------------------------------------- /public/assets/playRounded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/playRounded.svg -------------------------------------------------------------------------------- /public/assets/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/playlist.svg -------------------------------------------------------------------------------- /public/assets/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/previous.svg -------------------------------------------------------------------------------- /public/assets/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/repeat.svg -------------------------------------------------------------------------------- /public/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/search.svg -------------------------------------------------------------------------------- /public/assets/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/shuffle.svg -------------------------------------------------------------------------------- /public/assets/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/speaker.svg -------------------------------------------------------------------------------- /public/assets/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/assets/time.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/readme.md -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/UploadModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/styles/UploadModal.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /utils/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/utils/const.js -------------------------------------------------------------------------------- /utils/spotify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/utils/spotify.json -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/utils/utils.js -------------------------------------------------------------------------------- /wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverProgrammers/spotify-clone-blockchain/HEAD/wallet.json --------------------------------------------------------------------------------