KUSchedule.js 793 Bytes
Newer Older
Kim, Subin's avatar
KU    
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import styles from "./schedule.module.scss";

const KUSchedule = () => {
    return (
        <div className="card w-75 rounded-0 border-dark mx-auto">
            <div className={`card-header rounded-0 px-1 ${styles.header}`}>
                <img className={styles.ku_tiger} src={process.env.PUBLIC_URL + '/ku-tiger(bgX).png'} alt="어흥이" />
            </div>
            <div className="card-body text-center pb-2">
                <h5 className={`card-title ${styles.flowText}`}>복수전공 신청복수전공 신청복수전공 신청복수전공 신청</h5>
                <p className="card-text text-secondary mb-1">21.09.27 ~ 21.09.29</p>
                <p className="text-start mb-0">복수전공신청</p>
            </div>
        </div>
    )
}

export default KUSchedule