HomeProfile.js 588 Bytes
Newer Older
우지원's avatar
0628    
우지원 committed
1
2
import React from 'react'

Kim, Chaerin's avatar
Kim, Chaerin committed
3
4
const HomeProfile = () => {
    return (
우지원's avatar
0628    
우지원 committed
5
6
7
8
9
10
11
        <form className="flex-column align-items-center justify-content-center m-2">
            <div className="d-flex justify-content-center">
                <img src="/image2.jpg" className="rounded-circle" style={{ width: "157px", height: "157px", borderStyle: "solid", borderColor: "#262626" }} />
            </div>
            <h1 className="d-flex justify-content-center"> CHERRY </h1>
            <h2 className="d-flex justify-content-center"> #0805 </h2>
        </form>
Kim, Chaerin's avatar
Kim, Chaerin committed
12
13
14
15
    )
};

export default HomeProfile;