File tree 3 files changed +21
-15
lines changed
3 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 3
3
background-size : 100% auto;
4
4
background-image : url (/img/artistic.jpg);
5
5
border-radius : 6px ;
6
+ vertical-align : middle;
6
7
}
7
8
8
9
.jumbotron h1 {
11
12
font-size : 63px ;
12
13
line-height : 75px ;
13
14
font-weight : 700 ;
15
+ text-shadow : 3px 3px 2px rgba (150 , 150 , 150 , 1 );
14
16
}
15
- .jumbotron p {
17
+ form .col-md-4 {
18
+ margin : 30px ;
19
+ }
20
+ form .col-md-4 p {
16
21
color : # fff ;
17
- text-shadow : 2px 2px # 100e19 ;
18
- line-height : 1.5em ;
19
- /*-webkit-text-stroke: 1px black;*/
20
22
}
23
+
Original file line number Diff line number Diff line change @@ -7,21 +7,16 @@ <h1>chatbØx</h1>
7
7
8
8
< div class ="container ">
9
9
< div class ="row ">
10
- < div class ="col-md-4 ">
10
+ < div class ="col-md-6 ">
11
11
< h2 > Communicate Effectively</ h2 >
12
- < p > When customers land on your site they are presented with a simple window with which they can communicate with agents from your company.</ p >
12
+ < p > When visitors land on your site they are presented with a simple window with which they can communicate with agents from your company.</ p >
13
13
< p > < a class ="btn btn-default " href ="# " role ="button "> Learn More</ a > </ p >
14
14
</ div >
15
- < div class ="col-md-4 ">
15
+ < div class ="col-md-6 ">
16
16
< h2 > Bleeding Edge Tech</ h2 >
17
17
< p > We built this service using Clojure - a modern LISP for tackling modern problems.</ p >
18
18
< p > < a class ="btn btn-default " href ="# " role ="button "> See Our Tech</ a > </ p >
19
19
</ div >
20
- < div class ="col-md-4 ">
21
- < h2 > Sign Up</ h2 >
22
- < p > Click the button below to sign up and see what chatb0x is all about!</ p >
23
- < p > < a class ="btn btn-default " href ="# " role ="button "> Sign Up</ a > </ p >
24
- </ div >
25
20
</ div >
26
21
</ div > <!-- container -->
27
22
</ div > <!-- marketing -->
Original file line number Diff line number Diff line change 96
96
(html/deftemplate landing (io/resource " public/landing.html" )
97
97
[req]
98
98
[:body :div.navbar ] (html/substitute (navbar req))
99
- [:body :#content ] (html/substitute (marketing ))
99
+ [:body :#content ] (html/do->
100
+ (html/substitute (non-app-content req))
101
+ (html/append (marketing )))
102
+ [:body ] (brepl-injection ))
103
+
104
+ (html/deftemplate other-landing (io/resource " public/landing.html" )
105
+ [req]
106
+ [:body :div.navbar ] (html/substitute (navbar req))
107
+ [:body :#content ] (html/substitute (non-app-content req))
100
108
[:body ] (brepl-injection ))
101
109
102
110
; ;; Default page for erroneous logins
161
169
(defroutes unsecured-site
162
170
(resources " /" )
163
171
(GET " /" req (landing req))
164
- (GET " /about" req (landing req))
165
- (GET " /contact" req (landing req))
172
+ (GET " /about" req (other- landing req))
173
+ (GET " /contact" req (other- landing req))
166
174
(GET " /chatb0x" req (chatb0x req))
167
175
(GET " /agent-chat" req (friend/authorize #{:chatb0x.user/agent } (agent-chat req)))
168
176
(GET " /admin-dashboard" req (friend/authorize #{:chatb0x.user/admin } (admin-dashboard req)))
You can’t perform that action at this time.
0 commit comments