dev #196

Merged
ysCha merged 96 commits from dev into prd-deploy 2025-07-09 17:35:54 +09:00
Showing only changes of commit 42238db254 - Show all commits

View File

@ -1,5 +1,6 @@
'use client'
import LocaleSwitch from '@/components/LocaleSwitch'
import Config from '@/config/config.export'
import { usePathname } from 'next/navigation'
export default function Footer() {
@ -10,6 +11,7 @@ export default function Footer() {
<div className="footer-inner flex justify-center">
<span>COPYRIGHT©2024 Hanwha Japan All Rights Reserved.</span>
<LocaleSwitch />
{Config().mode}
</div>
</footer>
)}