Compare commits

...

3 Commits

3 changed files with 4 additions and 43 deletions
+1 -1
View File
@@ -2645,7 +2645,7 @@ h5.sm-title {
} }
.hero-5-btns h3 { .hero-5-btns h3 {
margin-bottom: 30px; margin-bottom: 6rem;
} }
.hero-6-txt h2 { .hero-6-txt h2 {
+2 -27
View File
@@ -1039,30 +1039,7 @@ class Fleet extends React.Component {
{/* Title */} {/* Title */}
<h2 className="h2-md">{downloadSection.header}</h2> <h2 className="h2-md">{downloadSection.header}</h2>
{/* Text */} {/* Text */}
<p className="p-xl">{downloadSection.text}</p> <p className="p-xl">{downloadSection.text}</p>
{/* STORE BADGES */}
<div className="stores-badge">
{/* AppStore */}
<a href="#" className="store">
<img className="appstore" src="assets/images/appstore-white.png" alt="appstore-logo" />
</a>
{/* Google Play */}
<a href="#" className="store">
<img className="googleplay" src="assets/images/googleplay-white.png" alt="googleplay-logo" />
</a>
</div>
{/* Rating */}
<div className="txt-block-rating">
<div className="stars-rating">
{downloadSection.ratingText}
<span className="flaticon-star ml-5" />
<span className="flaticon-star" />
<span className="flaticon-star" />
<span className="flaticon-star" />
<span className="flaticon-star-half-empty" />
<p className="txt-rating">{downloadSection.reviewText}</p>
</div>
</div>
</div> </div>
</div> {/* END TEXT BLOCK */} </div> {/* END TEXT BLOCK */}
</div> {/* End row */} </div> {/* End row */}
@@ -1245,7 +1222,5 @@ let subscribeSection = {
// Download Section // Download Section
let downloadSection = { let downloadSection = {
header: 'Take your fleet to the next level', header: 'Take your fleet to the next level',
text: 'Augue egestas volutpat egestas augue purus cubilia laoreet and magna suscipit luctus dolor tempus', text: 'Augue egestas volutpat egestas augue purus cubilia laoreet and magna suscipit luctus dolor tempus'
ratingText: 'All Versions Rating',
reviewText: 'Based on 7.296 user reviews (App Store & Google Play)'
} }
+1 -15
View File
@@ -75,18 +75,6 @@ class FloatHome extends React.Component {
<img class="microsoft" src="assets/images/microsoft.png" alt="microsoft-badge" /> <img class="microsoft" src="assets/images/microsoft.png" alt="microsoft-badge" />
</a> */} </a> */}
</div> {/* END STORE BADGES */} </div> {/* END STORE BADGES */}
{/* Rating */}
<div className="txt-block-rating">
<div className="stars-rating grey-color">
{heroSection.badge.rating}
<span className="flaticon-star ml-5" />
<span className="flaticon-star" />
<span className="flaticon-star" />
<span className="flaticon-star" />
<span className="flaticon-star-half-empty" />
<p className="txt-rating">{heroSection.badge.review}</p>
</div>
</div>
</div> </div>
</div> {/* END HERO-5 BUTTONS */} </div> {/* END HERO-5 BUTTONS */}
</div> {/* End row */} </div> {/* End row */}
@@ -1230,9 +1218,7 @@ class FloatHome extends React.Component {
</section> {/* END DOWNLOAD-5 */} </section> {/* END DOWNLOAD-5 */}
</div> {/* END PAGE CONTENT */} </div> {/* END PAGE CONTENT */}
</div>
</div>
) )
} }
} }