diff options
author | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-27 12:34:14 -0300 |
---|---|---|
committer | João Augusto Costa Branco Marado Torres <torres.dev@disroot.org> | 2025-07-27 12:34:14 -0300 |
commit | bd27bbb073465be77e4e752e6bf9bc4cf5e84c60 (patch) | |
tree | aeca59ee65177259a71f6068269451a3a4512001 /src/layouts | |
parent | 9f3b746f72bc7895d3f659a7201969349f5e5298 (diff) |
feat: styling microblogs
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/layouts')
-rw-r--r-- | src/layouts/PrevNext.astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layouts/PrevNext.astro b/src/layouts/PrevNext.astro index 64db40b..58e3c2a 100644 --- a/src/layouts/PrevNext.astro +++ b/src/layouts/PrevNext.astro @@ -2,8 +2,10 @@ import PrevNextNav from "@components/templates/PrevNextNav.astro"; interface Props { + first?: string | URL; previous?: string | URL; next?: string | URL; + last?: string | URL; label?: string; } --- |