VisionFTF / client / src / components / Logo.js
Logo.js
Raw
import React from 'react'
import { Container, Row, Col } from 'reactstrap';

const Logo = ({logo}) => {
    return (
        <div>
            <Container style={{marginTop:"90px"}}>
                <Row>
                <Col className="text-center">
                    <h1 className="text1 "> <span className="pr-2 "><b>VISION</b></span><img alt="logo" src={logo} height="110"  width="110" className="img-fluid"></img></h1>
                    <h5 className="text2 animate__animated animate__zoomIn">FORESIGHTING THE FUTURE</h5><br></br>
                </Col>
                </Row>
            </Container>          
        </div>
        
    )
}

export default Logo