feat: footer에 실행모드 추가
This commit is contained in:
parent
a98bfb5aca
commit
2531a41a8a
@ -1,10 +1,15 @@
|
||||
'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 </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>
|
||||
</>
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user