From 4632f5265504389aef36b996db23750de3eac6aa Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 14 Sep 2022 22:11:56 +0630 Subject: [PATCH] Add new search link in header --- src/components/Header.astro | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) 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;
- + +