Title.js 878 Bytes
Newer Older
우지원's avatar
0628    
우지원 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React from 'react'

const Title = () => {
    return (
        <form style={{ backgroundColor: "#FCF4FF" }} className="flex-column align-items-center justify-content-center p-2" >
            <div className="d-flex justify-content-center">
                <img src="/BORA.png" style={{ width: "160px" }} />
            </div>
        </form>
    )
};

/* const Title = () => {
    return (
        <form style={{ backgroundColor: "#FCF4FF" }} className="flex-column align-items-center justify-content-center p-2" >
            <div className="d-flex justify-content-center">
                <img src="/image2.jpg" className="rounded-circle" style={{ width: "157px", height: "157px", borderStyle: "solid", borderColor: "#262626" }} />
                <img src='/BORA.png' style={{ width: "160px" }} />
            </div>
        </form>
    )
}; */

export default Title;