From b1df082dc97720a0cc2f5e92c7991fd50f08a0bc Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 17 Sep 2025 19:52:47 +0200 Subject: feat(web): update website components --- web/src/layouts/Base.astro | 15 +++++++++------ web/src/pages/docs/texture-pack-format.astro | 1 - web/src/pages/index.astro | 2 +- web/src/pages/texture-packs.astro | 1 - 4 files changed, 10 insertions(+), 9 deletions(-) (limited to 'web/src') diff --git a/web/src/layouts/Base.astro b/web/src/layouts/Base.astro index da71f41..4df9bd2 100644 --- a/web/src/layouts/Base.astro +++ b/web/src/layouts/Base.astro @@ -1,13 +1,16 @@ --- -import Head, {type Props as HeadProps} from "./Head.astro"; +import NavBar from "../components/NavBar.astro"; +import Head, { type Props as HeadProps } from "./Head.astro"; type Props = { + navbar?: boolean; } & HeadProps; --- - - - -
- + + + {(Astro.props.navbar ?? true) ? : null} + +
+ diff --git a/web/src/pages/docs/texture-pack-format.astro b/web/src/pages/docs/texture-pack-format.astro index 0714aea..ed14cde 100644 --- a/web/src/pages/docs/texture-pack-format.astro +++ b/web/src/pages/docs/texture-pack-format.astro @@ -6,7 +6,6 @@ import MarkDown from './_texture-pack-format.md'; --- - diff --git a/web/src/pages/index.astro b/web/src/pages/index.astro index 4baa867..f8c789f 100644 --- a/web/src/pages/index.astro +++ b/web/src/pages/index.astro @@ -6,7 +6,7 @@ import NavBar from "../components/NavBar.astro"; import Content from "../layouts/Content.astro"; --- - +

Firmament

Hypixel SkyBlock Utility Mod

diff --git a/web/src/pages/texture-packs.astro b/web/src/pages/texture-packs.astro index ee511f9..0f34157 100644 --- a/web/src/pages/texture-packs.astro +++ b/web/src/pages/texture-packs.astro @@ -4,6 +4,5 @@ import NavBar from "../components/NavBar.astro"; --- - -- cgit