HomeProfile.js 728 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
우지원 committed
5
6
7
8
9
10
11
12
13
14
        <>
            <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>
            <div style={{ backgroundColor: "#262626", width: "auto", height: "2px" }} />
        </>
Kim, Chaerin's avatar
Kim, Chaerin committed
15
16
17
18
    )
};

export default HomeProfile;