import React from 'react'; import NavBar from './NavBar'; import Footer from './Footer'; import { useHistory } from "react-router-dom"; import Lottie from 'react-lottie'; import animationData from '../lottie/plane_gif'; import {Container,Row,Col,Carousel, Button} from "react-bootstrap"; import styled from 'styled-components'; import { CheckCircle, Heart, AddressCard, ChartLine } from '@styled-icons/fa-solid'; import { Bullseye } from "@styled-icons/fa-solid"; import { StyledIconBase } from '@styled-icons/styled-icon' import Sidebar from './Sidebar'; const Body = styled.div` `; const IconStyler = styled.div` ${StyledIconBase} { width: ${props => props.width ? props.width : 26}px; height: ${props => props.height ? props.height : 26}; color: ${ props => props.color ? props.color: "white"}; } `; const defaultOptions = { loop: true, autoplay: true, animationData: animationData, rendererSettings: { preserveAspectRatio: "xMidYMid slice" } }; const ColoredSection = styled.section` background-color:#66bfbf; color: #fff; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; `; const WhiteSection = styled.section` background:#fff; `; const PressSection = styled(ColoredSection)` padding-bottom: 3%; align-items:center; `; const PressLogo = styled.img` width: 18%; height: 18%; margin: 20px 20px 50px; `; const RowFix = styled(Row)` margin: 0 0px; `; const FeatureCol = styled(Col)` padding: 4.5%; `; const ContainerPadded = styled(Container)` padding: 5% 5%; text-align: center; `; const BigHeading = styled.h1` font-size: 5rem; line-height: 1.5; font-family: "Ubuntu"; color: white; font-weight: bold; `; const FeatureTitle = styled.h3` font-size: 1.5rem; color:#8f8f8f; align-self: center; `; const TestimonalTitle = styled.h2` font-size: 3rem; color:#fff; line-height: 1.5; align-content: center; padding: 10px 50px; font-style: italic; `; export default function HomePage() { const history = useHistory(); return ( Adapt to a new place easy peasy.  
Easy to use.

Get relocated.We'll take care of everything.


Efficient

Get highest number of services for lowest cost possible.


Relax

Sit back , we'll do the dirty work.



"I had to shift from Bangalore to Hyderabad. Thanks to Locaft , it was easy to know about this place."

Nishant, Pune

"Relocation took me 3 months previously , but thanks to Locaft , everything was done within 3 days."

Mani, Hyderabad

Our Partners
About Us

Adapting to a new place is always hard in any phase of life. We aim to make it easy.


Vision

Bringing all the basic amenities to the new place before your arrival.

< br/> Mission

Getting adapted and familiar to the new place made easy.

check us out   ); }