Google Offline Navigator: An open source project built for Grow with Google
+
+
+
+
+## How to contribute
+Thanks for your interest in contributing to Offline Google Maps Navigator! Contributing to open source projects like this one can be a rewarding way to learn, teach, and build experience.
+Not only that, contributing is a great way to get involved with social coding. We are excited to see what amazing contributions you will make, as well as how your contributions will benefit others.
+Here is how you can [contribute](CONTRIBUTING.md) and here is how you can get [set up](README.md) with the code base
+
+## Wiki
+The wiki is where you will find more information about the inner workings of this project. You will also find documentation about specific components here.
+Check it [out](https://github.com/TheDevPath/googleMaps-offline-navigator/wiki)
+
+## Best Practices
+This is where the team captures lessons learned, best practices and "gotchas" that may be of help to others
+
+## Meet the team
+Here are the [people](https://github.com/TheDevPath/googleMaps-offline-navigator/graphs/contributors) behind this project
+
+ ![Logo](https://user-images.githubusercontent.com/35308564/36317506-4407c0aa-130b-11e8-88a2-af1cca16eaba.PNG "Logo")
+
+
+
+
diff --git a/docs/style.css b/docs/style.css
new file mode 100644
index 0000000..20ef392
--- /dev/null
+++ b/docs/style.css
@@ -0,0 +1,3 @@
+#logo {
+ width: 100px;
+}
diff --git a/models/saved-pins.js b/models/saved-pins.js
index 6c9c3e6..c0d9dae 100644
--- a/models/saved-pins.js
+++ b/models/saved-pins.js
@@ -13,4 +13,3 @@ const savedPinsSchema = new mongoose.Schema({
});
module.exports = mongoose.model('SavedPins', savedPinsSchema);
-
diff --git a/models/search-history.js b/models/search-history.js
index 40937f3..29a7c45 100644
--- a/models/search-history.js
+++ b/models/search-history.js
@@ -8,4 +8,3 @@ const searchHistorySchema = new Schema({
});
module.exports = mongoose.model('SearchHistory', searchHistorySchema);
-