From 52dd53d3a31a4d11b2112e13dbca204105933905 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Tue, 10 Mar 2026 16:03:53 +1100 Subject: [PATCH] website tweaks (#952) * Adding nav to learning hub * Simplifying the home page * Fixing footer spacing --- website/src/components/Footer.astro | 68 +++++++++++++++++-- .../src/content/docs/learning-hub/index.md | 9 --- website/src/pages/index.astro | 33 --------- website/src/scripts/pages/index.ts | 39 ++--------- 4 files changed, 65 insertions(+), 84 deletions(-) diff --git a/website/src/components/Footer.astro b/website/src/components/Footer.astro index b46600a6..9b857bf0 100644 --- a/website/src/components/Footer.astro +++ b/website/src/components/Footer.astro @@ -1,22 +1,76 @@ --- -import type { Props } from '@astrojs/starlight/props'; -import Default from '@astrojs/starlight/components/Footer.astro'; +import EditLink from "@astrojs/starlight/components/EditLink.astro"; +import LastUpdated from "@astrojs/starlight/components/LastUpdated.astro"; +import Pagination from "@astrojs/starlight/components/Pagination.astro"; +import config from "virtual:starlight/user-config"; +import { Icon } from "@astrojs/starlight/components"; --- - +