mirror of
https://github.com/dyzulk/trustlab-docs.git
synced 2026-01-26 05:25:38 +07:00
refactor: migrate to flat-file i18n structure and fix relative imports
This commit is contained in:
@@ -1,10 +1,15 @@
|
||||
{
|
||||
"en": {
|
||||
"index": {
|
||||
"title": "Home",
|
||||
"type": "page",
|
||||
"display": "hidden"
|
||||
},
|
||||
"id": {
|
||||
"type": "page",
|
||||
"display": "hidden"
|
||||
"guide": {
|
||||
"title": "User Guide",
|
||||
"type": "page"
|
||||
},
|
||||
"developer": {
|
||||
"title": "Developer API",
|
||||
"type": "page"
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"index": {
|
||||
"title": "Home",
|
||||
"type": "page",
|
||||
"display": "hidden"
|
||||
},
|
||||
"guide": {
|
||||
"title": "User Guide",
|
||||
"type": "page"
|
||||
},
|
||||
"developer": {
|
||||
"title": "Developer API",
|
||||
"type": "page"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
import { LandingPage } from '../../components/LandingPage'
|
||||
|
||||
<LandingPage />
|
||||
@@ -55,7 +55,7 @@ Pilih distribusi Anda untuk mendapatkan perintah instalasi yang dioptimalkan:
|
||||
|
||||
---
|
||||
|
||||
import { DynamicInstallationGuide } from '../../../../components/DynamicInstallationGuide'
|
||||
import { DynamicInstallationGuide } from '../../../components/DynamicInstallationGuide'
|
||||
|
||||
## Instalasi Sertifikat Individu
|
||||
|
||||
@@ -53,7 +53,7 @@ Select your distribution to get the optimized installation command:
|
||||
|
||||
---
|
||||
|
||||
import { DynamicInstallationGuide } from '../../../../components/DynamicInstallationGuide'
|
||||
import { DynamicInstallationGuide } from '../../../components/DynamicInstallationGuide'
|
||||
|
||||
## Individual Certificate Installation
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
import { LandingPage } from '../../components/LandingPage'
|
||||
|
||||
<LandingPage locale="id" />
|
||||
3
pages/index.id.mdx
Normal file
3
pages/index.id.mdx
Normal file
@@ -0,0 +1,3 @@
|
||||
import { LandingPage } from '../components/LandingPage'
|
||||
|
||||
<LandingPage locale="id" />
|
||||
3
pages/index.mdx
Normal file
3
pages/index.mdx
Normal file
@@ -0,0 +1,3 @@
|
||||
import { LandingPage } from '../components/LandingPage'
|
||||
|
||||
<LandingPage />
|
||||
Reference in New Issue
Block a user