Initialize mdx

This commit is contained in:
2025-08-24 06:03:52 +08:00
committed by GitHub
commit fe0e4622c2
89 changed files with 14844 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
import { getCollection, getEntry } from "astro:content";
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>