diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-17 04:01:17 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-17 04:01:50 +0100 |
commit | a1fe3d8e4e72761f814a8876035c5c80cf068391 (patch) | |
tree | 69dd2f51ae7271265deebe4f11f1f5e5cb78c5a2 /web/src/pages/docs/texture-pack-format.astro | |
parent | 46e436ca043c7a969e3296b368cc4a14550e375c (diff) | |
download | Firmament-feat/web.tar.gz Firmament-feat/web.tar.bz2 Firmament-feat/web.zip |
feat(web): Move over some docsfeat/web
Diffstat (limited to 'web/src/pages/docs/texture-pack-format.astro')
-rw-r--r-- | web/src/pages/docs/texture-pack-format.astro | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/src/pages/docs/texture-pack-format.astro b/web/src/pages/docs/texture-pack-format.astro new file mode 100644 index 0000000..f04188f --- /dev/null +++ b/web/src/pages/docs/texture-pack-format.astro @@ -0,0 +1,15 @@ +--- +import Base from "../../layouts/Base.astro"; +import NavBar from "../../components/NavBar.astro"; +import Content from "../../layouts/Content.astro"; +import MarkDown from './texture-pack-format.md'; +--- + +<Base title="Firmament Texture Packs"> + <NavBar></NavBar> + <Content> + <MarkDown/> + </Content> +</Base> + + |