23 lines
527 B
TypeScript
23 lines
527 B
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
import Config from '@/config/config.export'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<>
|
|
<footer>
|
|
<div className="footer-inner">
|
|
COPYRIGHT©2025 Hanwha Japan All Rights Reserved{' '}
|
|
<span>
|
|
<Link href="/pdf/suitable">PDF</Link>
|
|
</span>
|
|
<span>{Config().mode}</span>
|
|
<span>{Config().baseUrl}</span>
|
|
<span>{process.env.NEXT_PUBLIC_API_URL}</span>
|
|
</div>
|
|
</footer>
|
|
</>
|
|
)
|
|
}
|