-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
247 additions
and
140 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import GuideImage from "public/images/posture-guide-2x.png" | ||
|
||
const GuidePopup = ({ onClose }: { onClose: () => void }) => { | ||
return ( | ||
<div className="absolute inset-0 flex items-center justify-center backdrop-blur-lg"> | ||
{/* blur 처리 */} | ||
<div className="pointer-events-auto relative w-[600px] rounded-lg bg-white p-8 shadow-lg"> | ||
{/* 이미지로 대체된 가이드 부분 */} | ||
<div className="mb-8 flex justify-center"> | ||
<img | ||
src={GuideImage} // 이미지 경로를 실제 경로로 수정하세요 | ||
alt="바른자세 가이드" | ||
className="h-auto w-full" // 이미지 사이즈 조정 | ||
/> | ||
</div> | ||
|
||
<div className="mt-6 flex justify-center"> | ||
<button className="rounded-full bg-blue-500 px-4 py-2 text-white" onClick={onClose}> | ||
모니터링 시작하기 | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default GuidePopup |
Oops, something went wrong.