diff --git a/source/src/components/global/Header.astro b/source/src/components/global/Header.astro index 8848cdf..0e68924 100644 --- a/source/src/components/global/Header.astro +++ b/source/src/components/global/Header.astro @@ -2,24 +2,41 @@ // Properties const {Query, QueryText} = Astro.props +// Components +import SearchBox from "./SearchBox.astro"; + // Icons -import { HalfMoon, Menu } from "@iconoir/vue"; +import { HalfMoon, Menu, SunLight } from "@iconoir/vue"; ---
- +
- +
+ + + - \ No newline at end of file diff --git a/source/src/components/global/SearchBox.astro b/source/src/components/global/SearchBox.astro new file mode 100644 index 0000000..114d14d --- /dev/null +++ b/source/src/components/global/SearchBox.astro @@ -0,0 +1,39 @@ +--- +// Properties +const {Query, QueryText} = Astro.props +--- + + + + \ No newline at end of file