69 lines
3.0 KiB
JavaScript
69 lines
3.0 KiB
JavaScript
import React, {Component} from 'react';
|
|
|
|
class FindMobility extends React.Component {
|
|
render() {
|
|
return(
|
|
<div>
|
|
|
|
|
|
{/* PRELOADER SPINNER
|
|
============================================= */}
|
|
<div id="loader-wrapper">
|
|
<div id="loading">
|
|
<span className="cssload-loader"><span className="cssload-loader-inner" /></span>
|
|
</div>
|
|
</div>
|
|
{/* PAGE CONTENT
|
|
============================================= */}
|
|
<div id="page" className="page">
|
|
|
|
|
|
|
|
<section id="content-11" className="pb-100 content-section division">
|
|
<div className="container">
|
|
{/* SECTION TITLE */}
|
|
<div className="row">
|
|
<div className="col-lg-10 offset-lg-1">
|
|
<div className="section-title text-center mb-60">
|
|
{/* Title */}
|
|
<h2 className="h2-md">Chat with Your Friends Easily</h2>
|
|
{/* Text */}
|
|
<p className="p-xl">Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero
|
|
tempus, blandit and cursus varius magna tempus a dolor
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/* IMAGE BLOCK */}
|
|
<div className="row">
|
|
<div className="col-md-12">
|
|
<div className="img-block text-center wow fadeInUp" data-wow-delay="0.6s">
|
|
<img className="img-fluid" src="assets/images/socials.png" alt="content-image" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/* DOWNLOAD BUTTON */}
|
|
<div className="row">
|
|
<div className="col-md-12">
|
|
<div className="content-11-btn ico-20 ico-right mt-60 wow fadeInUp" data-wow-delay="0.6s">
|
|
{/* Button */}
|
|
<a href="#" className="btn btn-md btn-skyblue tra-grey-hover">
|
|
Refresh
|
|
</a>
|
|
{/* OS Prerequisite */}
|
|
</div>
|
|
</div>
|
|
</div> {/* END DOWNLOAD BUTTON */}
|
|
</div> {/* End container */}
|
|
</section> {/* END CONTENT-11 */}
|
|
|
|
|
|
|
|
</div> {/* END PAGE CONTENT */}
|
|
|
|
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
export default FindMobility |