Footer.js 1.03 KB
Newer Older
Spark's avatar
Spark committed
1
import React from 'react'
2
import '../App.css'
Spark's avatar
Spark committed
3
import { Container, Row, Col } from 'react-bootstrap';
Spark's avatar
layout    
Spark committed
4

5

Spark's avatar
Spark committed
6
function Footer() {
Spark's avatar
layout    
Spark committed
7
8

    return (
Spark's avatar
Spark committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
        <Container className='m-auto d-flex justify-content-center' id='footer'>
            <Row className='m-auto d-flex justify-content-center text-center w-100'
                style={{ fontSize: '0.8em' }}>
                <hr />
                <Col style={{ display: 'flex', color: 'gray', fontWeight: '300', alignItems: 'center', justifyContent: 'center' }}>
                    © 2021 TEAM EUE. All rights reserved
                </Col>
                <Col>
                    <a href='https://www.notion.so/EUE-047f1812c6c24096a528dfd3330c227d'
                        style={{ color: '#04AB70', textDecoration: 'none', fontWeight: '300' }}>

                        <strong>
                            TEAM EUE
                        </strong>
                    </a> <br />안강민, 박상호, 박예은
                </Col>
            </Row>
        </Container >
Spark's avatar
layout    
Spark committed
27
28
29
30
    )
}

export default Footer;