diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 48bb560..e0088f4 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -3,7 +3,7 @@ import Icon from "astro-iconify"; import type { Link } from "../constants/links"; export interface Props { - links: Array; + links: readonly Link[]; } let { links } = Astro.props;