diff --git a/src/components/Header.astro b/src/components/Header.astro index 3d38efc..58c0413 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,8 +1,9 @@ --- import Hr from "./Hr.astro"; +import LinkButton from "./LinkButton.astro"; export interface Props { - activeNav?: "posts" | "tags" | "about"; + activeNav?: "posts" | "tags" | "about" | "search"; } const { activeNav } = Astro.props; @@ -38,13 +39,19 @@ const { activeNav } = Astro.props;
- + +