This is the frontend for the Innopoints portal of Innopolis University.
Built using:
Ensure you have Yarn installed. To run the application locally, run the following:
yarn install
yarn dev
There are three types of entities that build up this website:
- Pages (
src/routes
) - Containers (
src/containers
) - Components (
src/components
)
The pages are the largest entities, the structure defines the routes on the website (powered by Sapper).
The containers are major blocks on pages.
The components are small building blocks that make up containers and pages. Frequently very contextual and narrow-purposed.
The SCSS styles are located in static/css
, and are reflecting the structure of pages, containers and components.
This project is MIT licensed.