diff options
Diffstat (limited to 'src/components/blog/Pagination.astro')
| -rw-r--r-- | src/components/blog/Pagination.astro | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/components/blog/Pagination.astro b/src/components/blog/Pagination.astro new file mode 100644 index 0000000..051587c --- /dev/null +++ b/src/components/blog/Pagination.astro @@ -0,0 +1,36 @@ +--- +import { Icon } from 'astro-icon/components'; +import { getPermalink } from '~/utils/permalinks'; +import Button from '~/components/ui/Button.astro'; + +export interface Props { + prevUrl?: string; + nextUrl?: string; + prevText?: string; + nextText?: string; +} + +const { prevUrl, nextUrl, prevText = 'Newer posts', nextText = 'Older posts' } = Astro.props; +--- + +{ + (prevUrl || nextUrl) && ( + <div class="container flex"> + <div class="flex flex-row mx-auto container justify-between"> + <Button + variant="tertiary" + class={`md:px-3 px-3 mr-2 ${!prevUrl ? 'invisible' : ''}`} + href={getPermalink(prevUrl)} + > + <Icon name="tabler:chevron-left" class="w-6 h-6" /> + <p class="ml-2">{prevText}</p> + </Button> + + <Button variant="tertiary" class={`md:px-3 px-3 ${!nextUrl ? 'invisible' : ''}`} href={getPermalink(nextUrl)}> + <span class="mr-2">{nextText}</span> + <Icon name="tabler:chevron-right" class="w-6 h-6" /> + </Button> + </div> + </div> + ) +} |
