12 lines
303 B
Plaintext
12 lines
303 B
Plaintext
---
|
|
import MainGridLayout from '@layouts/MainGridLayout.astro'
|
|
import ArchivePanel from '@components/ArchivePanel.astro'
|
|
import { i18n } from '@i18n/translation'
|
|
import I18nKey from '@i18n/i18nKey'
|
|
---
|
|
|
|
<MainGridLayout title={i18n(I18nKey.archive)}>
|
|
<ArchivePanel></ArchivePanel>
|
|
</MainGridLayout>
|
|
|