import optimize
This commit is contained in:
parent
841fa3a686
commit
0268fa8a3d
|
@ -32,8 +32,6 @@ const FillingDetails = () => {
|
|||
<br></br>
|
||||
<Heading>Details</Heading>
|
||||
<br></br>
|
||||
<h1></h1>
|
||||
<h1></h1>
|
||||
<div>
|
||||
Source:
|
||||
<Selector
|
||||
|
|
|
@ -38,30 +38,9 @@ const IconStyler = styled.div`
|
|||
|
||||
`;
|
||||
|
||||
const FacebookIcon = styled(Facebook)`
|
||||
margin: 20px 10px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
`;
|
||||
const TwitterIcon = styled(Twitter)`
|
||||
margin: 20px 10px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
`;
|
||||
const InstagramIcon = styled(Instagram)`
|
||||
margin: 20px 10px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
`;
|
||||
const EnvelopeIcon = styled(Envelope)`
|
||||
margin: 20px 10px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
`;
|
||||
|
||||
|
||||
|
||||
const Footer = (props) => {
|
||||
const Footer = () => {
|
||||
return (
|
||||
<WhiteSection>
|
||||
<ContainerPadded fluid>
|
||||
|
|
|
@ -9,7 +9,6 @@ import {
|
|||
Container,
|
||||
Row,
|
||||
Col,
|
||||
Button,
|
||||
Carousel,
|
||||
|
||||
} from "react-bootstrap";
|
||||
|
@ -90,10 +89,7 @@ const TestimonalTitle = styled.h2`
|
|||
color:#fff;
|
||||
line-height: 1.5;
|
||||
`;
|
||||
const SkyScraper = styled.img`
|
||||
width: 100vw;
|
||||
height: 200px;
|
||||
`;
|
||||
|
||||
|
||||
export default function HomePage() {
|
||||
const history = useHistory();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import { BrowserRouter, Route, NavLink, Switch,withRouter } from 'react-router-dom';
|
||||
import Register from './Register';
|
||||
import Login from './Login';
|
||||
|
@ -12,7 +12,7 @@ const LogInContainer = (props) => {
|
|||
<div className="Apper">
|
||||
<div className="Apper__Aside">
|
||||
<div className="Apper_logo">
|
||||
<img src="/logo.jpg"></img>
|
||||
<img src="/logo.jpg" alt="plane logo"></img>
|
||||
</div>
|
||||
<div className="Apper__Aside__text">
|
||||
<h1 className="Apper_heading">locaft</h1>
|
||||
|
@ -20,7 +20,7 @@ const LogInContainer = (props) => {
|
|||
|
||||
</div>
|
||||
<div className="Apper_Aside_image">
|
||||
<img src="/skyscraper.jpg"></img>
|
||||
<img src="/skyscraper.jpg" alt="skyscraper"></img>
|
||||
</div>
|
||||
</div>
|
||||
<div className="Apper__Form">
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import React, { useState,useContext,useEffect } from 'react';
|
||||
import React, {useContext,useEffect } from 'react';
|
||||
import { Link } from "react-router-dom";
|
||||
import '../navbar.css';
|
||||
import UserContext from "../context/UserContext";
|
||||
|
|
Loading…
Reference in New Issue