From 55769698f2fcdac073d52eb66fcfb2a646a996af Mon Sep 17 00:00:00 2001 From: Ewan Croft Date: Mon, 21 Jul 2025 03:00:32 +0100 Subject: [PATCH] feat(footer): improve layout and add visible ActivityPub user link Restructure footer into two rows for better readability and spacing. Make ActivityPub user link visible with formatted username instead of hidden aria-label. Update README to reflect footer component's functionality. --- src/README.md | 2 +- src/lib/components/layout/footer/Main.svelte | 85 ++++++++++++++------ 2 files changed, 60 insertions(+), 27 deletions(-) diff --git a/src/README.md b/src/README.md index 92e991f..6915557 100644 --- a/src/README.md +++ b/src/README.md @@ -46,7 +46,7 @@ Contains all Svelte components used throughout the application, organised by the - : Export file for layout components. - `lib/components/layout/footer/`: Components specific to the website's footer. - : Displays information about the last commit. - - : The main footer component. + - : The main footer component, which also displays the ActivityPub user if configured. - : Displays a "TID" clock (likely a custom time format). - `lib/components/layout/main/`: Components for the main content area. - : Displays dynamically loaded links. diff --git a/src/lib/components/layout/footer/Main.svelte b/src/lib/components/layout/footer/Main.svelte index 62414bc..c50e194 100644 --- a/src/lib/components/layout/footer/Main.svelte +++ b/src/lib/components/layout/footer/Main.svelte @@ -15,29 +15,62 @@ }); - \ No newline at end of file + -- 2.51.2