diff --git a/components/apply/apply.html b/components/apply/apply.html
new file mode 100644
index 0000000..6534f1b
--- /dev/null
+++ b/components/apply/apply.html
@@ -0,0 +1,11 @@
+
diff --git a/components/apply/apply.js b/components/apply/apply.js
new file mode 100644
index 0000000..4bae737
--- /dev/null
+++ b/components/apply/apply.js
@@ -0,0 +1,20 @@
+(function() {
+ 'use strict';
+
+ angular.module('App.apply', [])
+
+ .directive('apply', [
+ '$interval', '$filter', '$kinvey', '$http',
+ function($interval, $filter, $kinvey, $http) {
+ return {
+ restrict: 'E',
+ replace: true,
+ templateUrl: 'components/apply/apply.html',
+ scope: {},
+ link: function(scope, elem, attrs) {
+
+ }
+ };
+ }]);
+
+}());
diff --git a/components/apply/apply.less b/components/apply/apply.less
new file mode 100644
index 0000000..e69de29
diff --git a/components/navbar/navbar.html b/components/navbar/navbar.html
index 8f6268c..3022337 100644
--- a/components/navbar/navbar.html
+++ b/components/navbar/navbar.html
@@ -17,6 +17,11 @@
Mentors
+
+
+ Apply
+
+
FAQ
diff --git a/index.html b/index.html
index 3ee7ee2..741f937 100644
--- a/index.html
+++ b/index.html
@@ -28,6 +28,7 @@
+
@@ -340,8 +341,48 @@
+
+
+
+
+
+
+
+
+