chore: setup manual localization branch with sidebar fix

This commit is contained in:
dyzulk
2026-01-09 07:50:24 +07:00
parent 0817284eae
commit 3441368552
55 changed files with 1238 additions and 170 deletions

View File

@@ -1,3 +1,10 @@
import { LandingPage } from '../components/LandingPage'
import { useEffect } from 'react'
import { useRouter } from 'next/router'
<LandingPage />
export default function Root() {
const router = useRouter()
useEffect(() => {
router.replace('/en')
}, [router])
return null
}