19 lines
336 B
TypeScript
19 lines
336 B
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<>
|
|
<footer>
|
|
<div className="footer-inner">
|
|
COPYRIGHT©2025 Hanwha Japan All Rights Reserved{' '}
|
|
<span>
|
|
<Link href="/pdf">PDF</Link>
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
</>
|
|
)
|
|
}
|