├── README.md ├── package.json ├── public └── index.html └── src ├── App.js ├── LandingPage.js ├── MapView.js ├── QuestOptions.js ├── QuestView.js ├── Register.js ├── SignIn.js ├── TutorialPage.js ├── index.js ├── pictures ├── Art.png ├── History.png ├── Logo.png ├── Nature.png ├── Sport.png ├── architecture.png ├── download.jpeg ├── facebook.png ├── fb.jpg ├── googleplus.png └── malmo.png └── styles.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/App.js -------------------------------------------------------------------------------- /src/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/LandingPage.js -------------------------------------------------------------------------------- /src/MapView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/MapView.js -------------------------------------------------------------------------------- /src/QuestOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/QuestOptions.js -------------------------------------------------------------------------------- /src/QuestView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/QuestView.js -------------------------------------------------------------------------------- /src/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/Register.js -------------------------------------------------------------------------------- /src/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/SignIn.js -------------------------------------------------------------------------------- /src/TutorialPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/TutorialPage.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pictures/Art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/Art.png -------------------------------------------------------------------------------- /src/pictures/History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/History.png -------------------------------------------------------------------------------- /src/pictures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/Logo.png -------------------------------------------------------------------------------- /src/pictures/Nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/Nature.png -------------------------------------------------------------------------------- /src/pictures/Sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/Sport.png -------------------------------------------------------------------------------- /src/pictures/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/architecture.png -------------------------------------------------------------------------------- /src/pictures/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/download.jpeg -------------------------------------------------------------------------------- /src/pictures/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/facebook.png -------------------------------------------------------------------------------- /src/pictures/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/fb.jpg -------------------------------------------------------------------------------- /src/pictures/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/googleplus.png -------------------------------------------------------------------------------- /src/pictures/malmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/pictures/malmo.png -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VernitaJ/mobile-SPA-application/HEAD/src/styles.css --------------------------------------------------------------------------------