Header.js 561 Bytes
Newer Older
seoyeon's avatar
0705    
seoyeon committed
1
import { Link } from 'react-router-dom'
Kim, Chaerin's avatar
Kim, Chaerin committed
2
3
4
const Header = () => {
  return (
    <div>
5
      <form
seoyeon's avatar
0705    
seoyeon committed
6
        style={{ backgroundColor: '#FCF4FF' }}
7
8
9
        className="flex-column align-items-center justify-content-center p-2"
      >
        <div className="d-flex justify-content-center">
10
          <Link to="/">
seoyeon's avatar
0705    
seoyeon committed
11
            <img src="/BORA.png" style={{ width: '160px' }} />
12
13
14
15
          </Link>
        </div>
      </form>
      <div
seoyeon's avatar
0705    
seoyeon committed
16
        style={{ backgroundColor: '#262626', width: 'auto', height: '2px' }}
17
      ></div>
Kim, Chaerin's avatar
Kim, Chaerin committed
18
    </div>
seoyeon's avatar
0705    
seoyeon committed
19
20
  )
}
Kim, Chaerin's avatar
Kim, Chaerin committed
21

seoyeon's avatar
0705    
seoyeon committed
22
export default Header