This Landing page was developed as a test only. It uses:
- Yarn, as package manager (but it works with NPM too);
- React, to dynamically mount the page, and fetch all the required data;
- Babel, to convert fancy new JS syntax into something simpler, so that any browser can understand it;
- PostCSS, to compile/autoprefix the style files;
- Webpack, to bundle all the files into DEV and PROD versions.
After downloading, you need to run the yarn
command to download all the required packages that are listed in package.json
. After that, simply run yarn start
to start the Development version, or yarn build
, to generate another build that will be placed at the dist/
folder.
To run the application, you can access the contents of the dist/
folder. That's the final Production build.
To access the Development version, you need to access the src/
folder.
The Application will have a Carousel component, with data provided from an API that returns all the information abouit live matches that are available on Unibet website. You can click on the button Place a bet to be redirected to the match page on Unibet's website.
That's all! Thanks for your time.