2024-09-12 22:10:31 +00:00
|
|
|
---
|
2024-09-12 22:38:34 +00:00
|
|
|
import Next from "./Pagination/Next.astro";
|
|
|
|
import Prev from "./Pagination/Prev.astro";
|
|
|
|
|
2024-09-12 22:10:31 +00:00
|
|
|
type Props = {
|
|
|
|
readonly nextUrl?: string;
|
2024-09-12 22:57:55 +00:00
|
|
|
readonly prevUrl?: string;
|
2024-09-12 22:10:31 +00:00
|
|
|
};
|
|
|
|
|
2024-09-12 22:57:55 +00:00
|
|
|
const { nextUrl, prevUrl } = Astro.props;
|
2024-09-12 22:10:31 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<style lang="scss">
|
2024-09-12 22:38:34 +00:00
|
|
|
div {
|
2024-09-12 22:10:31 +00:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 3rem 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2024-09-12 22:38:34 +00:00
|
|
|
<div>
|
|
|
|
{prevUrl && <Prev url={prevUrl} />}
|
|
|
|
{nextUrl && <Next url={nextUrl} />}
|
2024-09-12 22:10:31 +00:00
|
|
|
</div>
|