2020-11-05 09:15:23 -08:00
|
|
|
import React, { Component } from 'react';
|
2020-11-07 07:23:24 -08:00
|
|
|
import { Button } from 'react-bootstrap';
|
2020-11-06 09:50:57 -08:00
|
|
|
import 'C:\\Priyathamwork\\locaft\\locaft\\src\\style.css';
|
2020-11-07 07:23:24 -08:00
|
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
class HomePage extends Component {
|
|
|
|
render(){
|
|
|
|
return (
|
|
|
|
<div className="HomePage">
|
2020-11-06 09:50:57 -08:00
|
|
|
<section class="colored-section" id="title">
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
|
|
|
|
|
|
|
<a class="navbar-brand" href="">locaft</a>
|
|
|
|
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
|
|
|
|
|
|
|
|
<ul class="navbar-nav ml-auto">
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#footer">Contact Us</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#about-us">About Us</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#cta">Blog</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#login">Sign up or in</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
</div>
|
|
|
|
</nav>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div className="row">
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div className="col-lg-6">
|
|
|
|
<h1 class="big-heading">Adapt to a new place easy peasy.</h1>
|
2020-11-07 07:23:24 -08:00
|
|
|
<button type="button" class = "btn btn-info login mr-1">Log In</button>
|
2020-11-06 09:50:57 -08:00
|
|
|
<button type="button" class="btn btn-info loginb">Sign Up</button>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
</div>
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="col-lg-6">
|
2020-11-07 07:23:24 -08:00
|
|
|
<img class="title-image" src="/locaft.png" alt="locaft-mockup" />
|
2020-11-06 09:50:57 -08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
</div>
|
2020-11-06 09:50:57 -08:00
|
|
|
</section>
|
|
|
|
<section class="white-section" id="features">
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="container-fluid">
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="row">
|
|
|
|
<div class="feature-box col-lg-4">
|
2020-11-07 07:23:24 -08:00
|
|
|
<i class="icon fas fa-check-circle fa-4x"></i>
|
2020-11-06 09:50:57 -08:00
|
|
|
<h3 class="feature-title">Easy to use.</h3>
|
|
|
|
<p>Get relocated.We'll take care of everything.</p>
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="icon fas fa-bullseye fa-4x"></i>
|
|
|
|
<h3 class="feature-title">Efficient</h3>
|
|
|
|
<p>Get highest number of services for lowest cost possible.</p>
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="icon fas fa-heart fa-4x"></i>
|
|
|
|
<h3 class="feature-title">Relax</h3>
|
|
|
|
<p>Sit back , we'll do the dirty work.</p>
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2020-11-06 09:50:57 -08:00
|
|
|
</section>
|
|
|
|
<section class="colored-section" id="testimonials">
|
|
|
|
|
|
|
|
<div id="testimonial-carousel" class="carousel slide" data-ride="false">
|
|
|
|
<div class="carousel-inner">
|
|
|
|
<div class="carousel-item active container-fluid">
|
|
|
|
<h2 class="testimonial-text">I had to shift from Bangalore to Hyderabad. Thanks to Locaft , it was easy to know about this place.</h2>
|
|
|
|
<img class="testimonial-image" src="Images/WhatsApp Image 2020-09-18 at 5.38.53 PM.jpeg" alt="mc-profile" />
|
|
|
|
<em>Mani , Hyderabad</em>
|
|
|
|
</div>
|
|
|
|
<div class="carousel-item container-fluid">
|
|
|
|
<h2 class="testimonial-text">Relocation took me 3 months previously , but thanks to Locaft , everything was done within 3 days.</h2>
|
|
|
|
<img class="testimonial-image" src="Images/WhatsApp Image 2020-09-18 at 5.38.39 PM.jpeg" alt="nishi-profile" />
|
|
|
|
<em>Nishanth , Bangalore</em>
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
</div>
|
2020-11-06 09:50:57 -08:00
|
|
|
<a class="carousel-control-prev" href="#testimonial-carousel" role="button" data-slide="prev">
|
|
|
|
<span class="carousel-control-prev-icon"></span>
|
|
|
|
</a>
|
|
|
|
<a class="carousel-control-next" href="#testimonial-carousel" role="button" data-slide="next">
|
|
|
|
<span class="carousel-control-next-icon"></span>
|
|
|
|
</a>
|
2020-11-05 09:15:23 -08:00
|
|
|
</div>
|
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
</section>
|
|
|
|
<section class="colored-section" id="press">
|
2020-11-07 07:23:24 -08:00
|
|
|
<img class="press-logo" src="/indigo.png" alt="indigo-logo" />
|
|
|
|
<img class="press-logo" src="/avasa.jpg" alt="avasa-logo" />
|
|
|
|
<img class="press-logo" src="/vrl.jpg" alt="vrl-logo" />
|
|
|
|
<img class="press-logo" src="/nobroker.png" alt="nobroker-logo" />
|
2020-11-06 09:50:57 -08:00
|
|
|
|
|
|
|
</section>
|
|
|
|
<section class="white-section" id="about-us">
|
|
|
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="icon fas fa-address-card fa-4x"></i>
|
|
|
|
<h2 class="feature-title">About Us</h2>
|
|
|
|
<p>Adapting to a new place is always hard in any phase of life. We aim to make it easy. </p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="icon fas fa-bullseye fa-4x"></i>
|
|
|
|
<h2 class="feature-title">Vision</h2>
|
|
|
|
<p>Bringing all the basic amenities to the new place before your arrival.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="icon fas fa-chart-line fa-4x"></i>
|
|
|
|
<h2 class="feature-title">Mission</h2>
|
|
|
|
<p>Getting adapted and familiar to the new place made easy.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<section class="colored-section" id="cta">
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="container-fluid">
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<h3 class="big-heading">Recommend us to your friends !</h3>
|
|
|
|
<button class="download-button btn btn-lg btn-dark" type="button"><i class="fab fa-apple"></i> Download</button>
|
|
|
|
<button class="download-button btn btn-lg brn-light" type="button"><i class="fab fa-google-play"></i> Download</button>
|
|
|
|
</div>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
<div class="container-fluid">
|
|
|
|
<h2>Any comments ?</h2>
|
|
|
|
<p>Your comments are what help us improve.</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<footer class="white-section" id="footer">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<i class="social-icon fab fa-facebook-f"></i>
|
|
|
|
<i class="social-icon fab fa-twitter"></i>
|
|
|
|
<i class="social-icon fab fa-instagram"></i>
|
|
|
|
<i class="social-icon fas fa-envelope"></i>
|
|
|
|
<p>© Copyright 2020 Locaft</p>
|
|
|
|
<p><a href="/tc">Terms and Conditions</a></p>
|
|
|
|
<p><a href="/pp">Privacy Policy</a></p>
|
|
|
|
</div>
|
|
|
|
</ footer>
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-06 09:50:57 -08:00
|
|
|
</div>
|
|
|
|
|
2020-11-05 09:15:23 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default HomePage;
|