Github Org: https://github.com/helloitseddie/TheCoralSafari

Project Structure:
•	View Controllers
	o	All files used for back end functionality using Swift
			/TheCoralSafari/TheCoralSafari/ViewControllers/WebViewController – contains back end functionality to load url into the web view
			/TheCoralSafari/TheCoralSafari/ViewControllers/FAQViewController – contains collection view's data and layout functionality
			/TheCoralSafari/TheCoralSafari/ViewControllers/LoginViewController – contains back end functionality and database communication for login process 
			/TheCoralSafari/TheCoralSafari/ViewControllers/MapViewController – contains API processing for search bar and back end map functionality involving database communication for map pins and their associated data objects
			/TheCoralSafari/TheCoralSafari/ViewControllers/AccountViewController – contains database communication to display user's activity and logout functionality
			/TheCoralSafari/TheCoralSafari/ViewControllers/TutorialViewController – contains back end functionality for recognizing user selection choice

•	Components
	o	Set of Swift files allowing for hard-coded FAQ data to be processed
			/TheCoralSafari/TheCoralSafari/Components/FAQ – contains data strucutre which holds the different custom images, labels, and URL links or the FAQ collection view
			/TheCoralSafari/TheCoralSafari/Components/FAQCell – contains storyboard outlets from individual cells in collection view
•	Models
	o	Set of Swift files used for managing coordinates and pin data for the MapView
			/TheCoralSafari/TheCoralSafari/Models/coordinateModel – used to store coordinate data retrieved from the JSON object and locate pin
			/TheCoralSafari/TheCoralSafari/Models/pinModel – used to store pin data retrieved from JSON object and display to user
•	Views
	o	Set of Storyboard files which are responsible for all front end visuals and user interactions.
			/TheCoralSafari/TheCoralSafari/Views/LaunchScreen – contains blank storyboard for launch screen on app open
			/TheCoralSafari/TheCoralSafari/Views/Main – Possesses all of the front end views seen by the user with each being connected to its associated Swift view controller
•	Assets and Delegates
	o	Used for all of applications system and session functionality, as well as containing all of the images used.
			/TheCoralSafari/TheCoralSafari/AppDelegate – contains built-in code for application session launch
			/TheCoralSafari/TheCoralSafari/SceneDelegate – contains built-in code for application's scene maintenance
			/TheCoralSafari/TheCoralSafari/Assets – contains all of the images used in the application