ResultForBn.js 1011 Bytes
import React from 'react'
import Button from './Button';

const ResultForBn = () => {
    return (
        <div>
            <img src="https://ibb.co/Xkm3JPK"
                width='auto'
                height='500px'
                alt='resultImg'
            />
            <img src="https://ibb.co/Xkm3JPK" alt="test" />
            <h1>분석 결과 : [거북목] 증상이 의심됩니다.</h1>
            <p>모니터에서 떨어져 목을 곧게 하고 어깨를 펴주세요.</p>
            <p>20~30분마다 목을 뒤로 젖혀 주는 신전 운동을 해주시면 도움이 됩니다.</p>
            <a href="https://terms.naver.com/entry.nhn?docId=927290&cid=51007&categoryId=51007" target="blank">https://terms.naver.com/entry.nhn?docId=927290&cid=51007&categoryId=51007</a>
            <a href="https://youtu.be/oYaal-ir9cc" target="blank">https://youtu.be/oYaal-ir9cc</a>
            <Button btnText="Try Again" />
        </div>
    )
}

export default ResultForBn;