* check in new ad for kickstarter

This commit is contained in:
Seth Call 2015-02-14 14:25:27 -06:00
parent 6007033a15
commit 2c3ed6beea
5 changed files with 145 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -75,6 +75,108 @@ body.web.landing_page {
}
}
&.kick_2 {
h1 {
//padding-left:20px;
}
.youtube-time-tip {
font-style:italic;
}
p {
line-height:120%;
}
.signup-wrapper {
width:75%;
text-align:center;
}
.landing-tag {
left: 50%;
}
.cta-container {
width:85%;
text-align:left;
margin-left:0% !important;
h1 {
margin: 0 0 10px 0;
}
a {margin-bottom:0 !important}
}
.back-us {
margin-top:15px;
width:85%;
img {
width:100%;
}
}
.column:nth-child(1) {
width:50% !important;
.cta-container {
margin-top:20px;
}
}
.column:nth-child(2) {
width:45% !important;
h2 {
margin-bottom:30px;
}
.cta-container a {
margin-bottom:8px;
}
}
.testimonial {
margin-top:70px;
p {
font-size:18px !important;
}
}
.signature {
margin-top:15px;
margin-left:30%;
font-size:18px;
position:relative;
.dash {
position:absolute;
width:20px;
left:-10px;
top:0;
}
}
.signature-details {
margin-top:5px;
font-style:italic;
margin-left:30%;
}
.signup-holder {
position:absolute;
top:350px;
width:45%;
}
.signup-info {
}
.signup-wrapper {
width:90%;
}
}
&.wo_1 {
.landing-tag {

View File

@ -26,6 +26,10 @@ class LandingsController < ApplicationController
render 'watch_kick', layout: 'web'
end
def watch_overview_kick2
render 'watch_kick_2', layout: 'web'
end
def watch_overview
@promo_buzz = PromoBuzz.active

View File

@ -0,0 +1,38 @@
- provide(:page_name, 'landing_page full kick_2')
.column
h1
| Learn About the Revolutionary New&nbsp;
b JamBlaster
span.youtube-time-tip
p Band performance starts at 1:00 mark
.video-wrapper
.video-container
iframe src="//www.youtube.com/embed/gAJAIHMyois?rel=0&autoplay=1" frameborder="0" allowfullscreen
.cta-container
p
| If you don't own an audio interface, we strongly recommend that you grab a JamBlaster on KickStarter now. It is far faster than traditional interfaces and easily&nbsp;
span
b the best way to play online!
= link_to image_tag("web/back-us-kickstarter.png", :alt => "Back us on KickStarter"), "https://www.kickstarter.com/projects/jamkazam/jamblaster-play-music-in-real-time-with-others-fro", class: "back-us", rel: "external"
.column
.testimonial
p "When my band played in real time from Austin, Atlanta, Chicago, and Brooklyn, it was mind blowing, pretty surreal. But at the same time, it was really easy and felt very natural. These guys have built something amazing!"
.signature
span.dash -
| Dave Sebree
.signature-details
p Gibson Endorsed Guitarist
p Professional Touring Musician
p Founder, Austin School of Music
p Owner, ASM Studios
.signup-holder
.signup-info
p
| If you already own an audio interface, then sign up for an account, and try using it with our free internet service. There are open sessions up every night with other musicians already playing online.
.signup-wrapper
= link_to image_tag("web/cta_button.png", :alt => "Sign up now for your free account!"), signup_path, class: "signup", id: "signup", rel: "external"
br clear="all"

View File

@ -27,6 +27,7 @@ SampleApp::Application.routes.draw do
match '/landing/wbt', to: 'landings#watch_bands_tight', via: :get, as: 'landing_wbt'
match '/landing/wot', to: 'landings#watch_overview_tight', via: :get, as: 'landing_wot'
match '/landing/kick', to: 'landings#watch_overview_kick', via: :get, as: 'landing_kick'
match '/landing/kick2', to: 'landings#watch_overview_kick2', via: :get, as: 'landing_kick2'
# oauth
match '/auth/:provider/callback', :to => 'sessions#oauth_callback'
match '/auth/failure', :to => 'sessions#failure'