From 5217bcb24ceac2e7d441586edc56feba60b482a9 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 13 Sep 2024 00:26:08 +0000 Subject: Refactor Pagination component to update page size in getStaticPaths --- src/components/Pagination/Next.astro | 18 ------------------ src/components/Pagination/Prev.astro | 18 ------------------ 2 files changed, 36 deletions(-) delete mode 100644 src/components/Pagination/Next.astro delete mode 100644 src/components/Pagination/Prev.astro (limited to 'src/components/Pagination') diff --git a/src/components/Pagination/Next.astro b/src/components/Pagination/Next.astro deleted file mode 100644 index 1a95710..0000000 --- a/src/components/Pagination/Next.astro +++ /dev/null @@ -1,18 +0,0 @@ ---- -type Props = { - readonly url: string; -}; - -const { url } = Astro.props; ---- - - - - - Next > - diff --git a/src/components/Pagination/Prev.astro b/src/components/Pagination/Prev.astro deleted file mode 100644 index 2454876..0000000 --- a/src/components/Pagination/Prev.astro +++ /dev/null @@ -1,18 +0,0 @@ ---- -type Props = { - readonly url: string; -}; - -const { url } = Astro.props; ---- - - - - - < Prev - -- cgit v1.2.3