├── .gitignore ├── .prettierrc ├── README.md ├── UNLICENSE ├── gatsby-config.js ├── package.json ├── src ├── components │ ├── Background.jsx │ ├── Background.scss │ ├── ClickOutside.jsx │ ├── CurrentTags.jsx │ ├── CurrentTags.scss │ ├── Dashboard.jsx │ ├── Dashboard.scss │ ├── Footer.jsx │ ├── Footer.scss │ ├── Header.jsx │ ├── Header.scss │ ├── Layout.jsx │ ├── Layout.scss │ ├── List.jsx │ ├── List.scss │ ├── Lists.jsx │ ├── Lists.scss │ ├── Player.jsx │ ├── Player.scss │ ├── PlayerArt.jsx │ ├── PlayerArt.scss │ ├── PlayerControls.jsx │ ├── PlayerControls.scss │ ├── PlayerInfo.jsx │ ├── PlayerInfo.scss │ ├── Search.jsx │ ├── Search.scss │ ├── Tag.jsx │ ├── Tag.scss │ ├── Tip.jsx │ └── Tip.scss ├── images │ ├── exit-up.svg │ ├── expand.svg │ ├── icon.png │ ├── logo.svg │ ├── minimize.svg │ ├── next.svg │ ├── pause.svg │ ├── play.svg │ ├── refresh.svg │ ├── shuffle.svg │ ├── volume-1.svg │ ├── volume-2.svg │ └── volume-x.svg ├── pages │ └── index.js └── utilities │ ├── api.js │ ├── constants.js │ ├── helpers.js │ ├── helpers.scss │ └── variables.scss ├── static ├── CNAME ├── favicon.ico └── screenshot.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | /public 3 | node_modules 4 | yarn-error.log 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/UNLICENSE -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Background.jsx -------------------------------------------------------------------------------- /src/components/Background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Background.scss -------------------------------------------------------------------------------- /src/components/ClickOutside.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/ClickOutside.jsx -------------------------------------------------------------------------------- /src/components/CurrentTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/CurrentTags.jsx -------------------------------------------------------------------------------- /src/components/CurrentTags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/CurrentTags.scss -------------------------------------------------------------------------------- /src/components/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Dashboard.scss -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Footer.scss -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Header.scss -------------------------------------------------------------------------------- /src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Layout.jsx -------------------------------------------------------------------------------- /src/components/Layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Layout.scss -------------------------------------------------------------------------------- /src/components/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/List.jsx -------------------------------------------------------------------------------- /src/components/List.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/List.scss -------------------------------------------------------------------------------- /src/components/Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Lists.jsx -------------------------------------------------------------------------------- /src/components/Lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Lists.scss -------------------------------------------------------------------------------- /src/components/Player.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Player.jsx -------------------------------------------------------------------------------- /src/components/Player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Player.scss -------------------------------------------------------------------------------- /src/components/PlayerArt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerArt.jsx -------------------------------------------------------------------------------- /src/components/PlayerArt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerArt.scss -------------------------------------------------------------------------------- /src/components/PlayerControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerControls.jsx -------------------------------------------------------------------------------- /src/components/PlayerControls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerControls.scss -------------------------------------------------------------------------------- /src/components/PlayerInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerInfo.jsx -------------------------------------------------------------------------------- /src/components/PlayerInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/PlayerInfo.scss -------------------------------------------------------------------------------- /src/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Search.jsx -------------------------------------------------------------------------------- /src/components/Search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Search.scss -------------------------------------------------------------------------------- /src/components/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Tag.jsx -------------------------------------------------------------------------------- /src/components/Tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Tag.scss -------------------------------------------------------------------------------- /src/components/Tip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Tip.jsx -------------------------------------------------------------------------------- /src/components/Tip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/components/Tip.scss -------------------------------------------------------------------------------- /src/images/exit-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/exit-up.svg -------------------------------------------------------------------------------- /src/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/expand.svg -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/logo.svg -------------------------------------------------------------------------------- /src/images/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/minimize.svg -------------------------------------------------------------------------------- /src/images/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/next.svg -------------------------------------------------------------------------------- /src/images/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/pause.svg -------------------------------------------------------------------------------- /src/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/play.svg -------------------------------------------------------------------------------- /src/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/refresh.svg -------------------------------------------------------------------------------- /src/images/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/shuffle.svg -------------------------------------------------------------------------------- /src/images/volume-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/volume-1.svg -------------------------------------------------------------------------------- /src/images/volume-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/volume-2.svg -------------------------------------------------------------------------------- /src/images/volume-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/images/volume-x.svg -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/utilities/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/utilities/api.js -------------------------------------------------------------------------------- /src/utilities/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/utilities/constants.js -------------------------------------------------------------------------------- /src/utilities/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/utilities/helpers.js -------------------------------------------------------------------------------- /src/utilities/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/utilities/helpers.scss -------------------------------------------------------------------------------- /src/utilities/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/src/utilities/variables.scss -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | radio.xvvvyz.xyz 2 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xvvvyz/radio/HEAD/yarn.lock --------------------------------------------------------------------------------