summaryrefslogtreecommitdiff
path: root/src/layouts/PrevNext.astro
blob: 58e3c2a01b1c2959c65372fe3c983c351762bc65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
import PrevNextNav from "@components/templates/PrevNextNav.astro";

interface Props {
  first?: string | URL;
  previous?: string | URL;
  next?: string | URL;
  last?: string | URL;
  label?: string;
}
---

<PrevNextNav {...Astro.props} />
<slot />
<PrevNextNav {...Astro.props} />