import LocaleSwitcher from '@/components/localeSwitcher'
import { useTranslations } from 'next-intl'
import Link from 'next/link'
import { logger } from '@/lib/logger'
const log = logger.child({ module: 'i18n-sample' })
log.debug('this module called1')
export default function Home() {
log.debug('this module called2')
const t = useTranslations('LoginPage')
return (
...
)
}