feat: 푸터에 실행모드 표출 제거

This commit is contained in:
Daseul Kim 2025-07-17 15:14:42 +09:00
parent cdaf57349c
commit be5c07a777

View File

@ -1,15 +1,10 @@
'use client'
export default function Footer() {
const runMode = process.env.NEXT_PUBLIC_RUN_MODE || 'error'
return (
<>
<footer>
<div className="footer-inner">
COPYRIGHT©2025 Hanwha Japan All Rights Reserved
<span style={{ marginLeft: '10px', fontSize: '12px', color: '#888' }}>[{runMode.toUpperCase()}]</span>
</div>
<div className="footer-inner">COPYRIGHT©2025 Hanwha Japan All Rights Reserved</div>
</footer>
</>
)