mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 05:25:38 +07:00
10 lines
213 B
Plaintext
10 lines
213 B
Plaintext
import { useRouter } from 'next/router'
|
|
import { LandingPage } from '../components/LandingPage'
|
|
|
|
export const Index = () => {
|
|
const { locale } = useRouter()
|
|
return <LandingPage locale={locale} />
|
|
}
|
|
|
|
<Index />
|