feat: footer에 실행모드 추가

This commit is contained in:
Daseul Kim 2025-06-30 14:26:28 +09:00
parent a98bfb5aca
commit 2531a41a8a

View File

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