18 lines
320 B
TypeScript
18 lines
320 B
TypeScript
'use client'
|
|
|
|
// Next Imports
|
|
import { redirect, usePathname } from 'next/navigation'
|
|
|
|
// Config Imports
|
|
import { i18n } from '@configs/i18n'
|
|
|
|
const LangRedirect = () => {
|
|
const pathname = usePathname()
|
|
|
|
const redirectUrl = `/${i18n.defaultLocale}${pathname}`
|
|
|
|
redirect(redirectUrl)
|
|
}
|
|
|
|
export default LangRedirect
|