diff --git a/app/router.coffee b/app/router.coffee
index 3ba758b5..fa73d98e 100644
--- a/app/router.coffee
+++ b/app/router.coffee
@@ -69,7 +69,7 @@ Router.map ->
   @route 'home-pro', path: '/home-pro'
   @route 'plans', path: '/plans'
   @route 'team', path: '/team'
-  @route 'logos', path: '/logo'
+  @route 'logo', path: '/logo'
 
   @resource 'profile', path: '/profile', ->
     @resource 'accounts', path: '/', ->
diff --git a/app/routes/logo.coffee b/app/routes/logo.coffee
new file mode 100644
index 00000000..c09424b6
--- /dev/null
+++ b/app/routes/logo.coffee
@@ -0,0 +1,7 @@
+`import Ember from 'ember'`
+`import TravisRoute from 'travis/routes/basic'`
+
+Route = TravisRoute.extend
+  needsAuth: false
+
+`export default Route`
diff --git a/app/templates/logo.hbs b/app/templates/logo.hbs
new file mode 100644
index 00000000..855a5eae
--- /dev/null
+++ b/app/templates/logo.hbs
@@ -0,0 +1,22 @@
+<div id="landing" class="landing wrapper">
+  <section class="section--white">
+    <div class="inner">
+      <header class="section--center team-header">
+        <h1 class="h1--red">So, you wanna use our logo?</h1>
+        <p class="text-big">That's no problem at all!<br>But first, let's go over some basics on how to use it.
+        </p>
+      </header>
+      <p class="text-small">The <strong>Travis CI wordmark</strong> combines the <strong>Travis CI mascot</strong> with the words “Travis CI” with a specific font and spacing treatment, creating a recognizable logo. This logo or wordmark is used online and in print for; product website, sponsored conference materials, invoices, emails, and other official business uses. <strong>You may also use the wordmark in other materials such as presentations mentioning Travis CI, conferences we are sponsoring and other partnerships</strong>.</p>
+      <p class="text-small"><strong>Approved official Travis CI logos are available to download</strong> in high and low res (.eps, .png) below. If you have questions about using our logo, please email <a href="mailto:support@travis-ci.com" title="email the Travis CI support team">support@travis-ci.com</a>.</p>
+    </div>
+  </section>
+  <section class="section--grey">
+    
+  </section>
+  <section class="section--white">
+    
+  </section>
+  <section class="section--grey">
+    
+  </section>
+</div>
\ No newline at end of file
diff --git a/app/views/logo.coffee b/app/views/logo.coffee
new file mode 100644
index 00000000..a55ab739
--- /dev/null
+++ b/app/views/logo.coffee
@@ -0,0 +1,8 @@
+`import BasicView from 'travis/views/basic'`
+
+View = BasicView.extend
+
+  classNames: ['landing-pro']
+  layoutName: 'layouts/landing-page'
+
+`export default View`