logo changes

This commit is contained in:
Priyatham-sai-chand 2020-12-10 17:59:50 +05:30
parent 1794c1eac1
commit ef40a8c01d
13 changed files with 51 additions and 23 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 23 KiB

BIN
public/indigo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

BIN
public/nobroker.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -8,7 +8,7 @@ import UserContext from "./context/UserContext";
import Options from "./components/Options";
import Stepper from './components/Stepper';
import NavBar from "./components/NavBar";
import FillingDetails from "./components/FillingDetails";
export default function App() {
const [userData, setUserData ] = useState({
token: undefined,
@ -55,6 +55,7 @@ export default function App() {
<Route path="/pricing" component={PricingPlan} />
<Route path="/track" component={Stepper} />
<Route path="/options" component={Options} />
<Route path="/details" component={FillingDetails} />
<Route path="/" render={() => <div>404</div>}/>
</Switch>
</UserContext.Provider>

View File

@ -0,0 +1,15 @@
import React from 'react';
import {Dropdown, DropdownButton} from 'react-bootstrap';
const FillingDetails = () => {
return (
<DropdownButton id="dropdown-basic-button" title="Dropdown button">
<Dropdown.Item href="#/action-1">asdf</Dropdown.Item>
<Dropdown.Item href="#/action-2">zxcv</Dropdown.Item>
<Dropdown.Item href="#/action-3">qewrty</Dropdown.Item>
</DropdownButton>
);
}
export default FillingDetails;

View File

@ -69,12 +69,10 @@ export default function HomePage(){
<div className="carousel-inner">
<div className="carousel-item active container-fluid">
<h2 className="testimonial-text">I had to shift from Bangalore to Hyderabad. Thanks to Locaft , it was easy to know about this place.</h2>
<img className="testimonial-image" src="Images/WhatsApp Image 2020-09-18 at 5.38.53 PM.jpeg" alt="mc-profile" />
<em>Mani , Hyderabad</em>
</div>
<div className="carousel-item container-fluid">
<h2 className="testimonial-text">Relocation took me 3 months previously , but thanks to Locaft , everything was done within 3 days.</h2>
<img className="testimonial-image" src="Images/WhatsApp Image 2020-09-18 at 5.38.39 PM.jpeg" alt="nishi-profile" />
<em>Nishanth , Bangalore</em>
</div>
</div>
@ -88,10 +86,11 @@ export default function HomePage(){
</section>
<section className="colored-section" id="press">
<img className="press-logo" src="/indigo.png" alt="indigo-logo" />
<h3 className="big-heading">Our Partners</h3>
<img className="press-logo" src="/indigo.jpg" alt="indigo-logo" />
<img className="press-logo" src="/avasa.jpg" alt="avasa-logo" />
<img className="press-logo" src="/vrl.jpg" alt="vrl-logo" />
<img className="press-logo" src="/nobroker.png" alt="nobroker-logo" />
<img className="press-logo" src="/nobroker.jpg" alt="nobroker-logo" />
</section>
<section className="white-section" id="about-us">

View File

@ -0,0 +1,16 @@
import React from 'react';
const HouseDetails = (props) => {
const contin = e => {
e.preventDefault();
this.props.nextStep();
};
const back = e => {
e.preventDefault();
this.props.prevStep();
};
const {values, handleChange} = props;
}

View File

@ -21,9 +21,8 @@ export default function Options() {
const MAX_STEPS = 4;
let currentStep = 1;
if (nextBtn) {
nextBtn.addEventListener('click', () => {
bullets[currentStep - 1].classNameList.add('completed');
bullets[currentStep - 1].classList.add('completed');
currentStep += 1;
previousBtn.disabled = false;
if (currentStep === MAX_STEPS) {
@ -33,12 +32,11 @@ export default function Options() {
content.innerText = `Step Number ${currentStep}`;
});
}
if (previousBtn) {
previousBtn.addEventListener('click', () => {
bullets[currentStep - 2].classNameList.remove('completed');
bullets[currentStep - 2].classList.remove('completed');
currentStep -= 1;
nextBtn.disabled = false;
finishBtn.disabled = true;
@ -47,13 +45,12 @@ export default function Options() {
}
content.innerText = `Step Number ${currentStep}`;
});
}
if (finishBtn) {
finishBtn.addEventListener('click', () => {
window.location.reload();
});
}
})
@ -78,10 +75,8 @@ export default function Options() {
<div className="bullet ">4</div>
</div>
</div>
<CardList>
<Card img="https://i.redd.it/b3esnz5ra34y.jpg" />
<Card img="https://i.redd.it/b3esnz5ra34y.jpg" />
</CardList>
<div id="main">
<p id="content" className="text-center">Step Number 1</p>
<button id="previousBtn" >Previous</button>

View File

@ -30,7 +30,6 @@ class PricingPlan extends Component {
< div class='pricing-plan__actions'>
<p class='pricing-plan__cost'>$10</p>
<p class='pricing-plan__text'>per month</p>
<a href='./' class='pricing-plan__button'>Purchase</a>
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
</div>
@ -53,7 +52,6 @@ class PricingPlan extends Component {
< div class='pricing-plan__actions'>
<p class='pricing-plan__cost'>$50</p>
<p class='pricing-plan__text'>per month</p>
<a href='./' class='pricing-plan__button'>Purchase</a>
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
</div>
@ -75,7 +73,6 @@ class PricingPlan extends Component {
< div class='pricing-plan__actions'>
<p class='pricing-plan__cost'>$100</p>
<p class='pricing-plan__text'>per month</p>
<a href='./' class='pricing-plan__button'>Purchase</a>
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
</div>
@ -83,6 +80,7 @@ class PricingPlan extends Component {
</div>
<a href='./' class='pricing-plan__button'>Purchase</a>

View File

@ -130,9 +130,12 @@ p {
background-color: #66bfbf;
padding-bottom: 3%;
}
.feature-title{
align-self: center;
}
.press-logo {
width: 15%;
width: 18%;
height: 18%;
margin: 20px 20px 50px;
}

View File

@ -83,7 +83,7 @@
.pricing-plan__feature:not(:last-child) {
margin-bottom: 0.5em;
margin-bottom: 2em;
}
.pricing-plan__feature::before {
@ -92,6 +92,7 @@
color: #009578;
position: absolute;
left: 0;
}
.pricing-plan__actions {