diff --git a/modules/gui/src/components/SearchResults/SearchResults.svelte b/modules/gui/src/components/SearchResults/SearchResults.svelte new file mode 100644 index 0000000..128c2d8 --- /dev/null +++ b/modules/gui/src/components/SearchResults/SearchResults.svelte @@ -0,0 +1,48 @@ + + +
+
+
+ Showing search results for `{term}` +
+ + + + + +
+
+ + diff --git a/modules/gui/src/routes/+layout.svelte b/modules/gui/src/routes/+layout.svelte index 9ebd22d..0afed1e 100644 --- a/modules/gui/src/routes/+layout.svelte +++ b/modules/gui/src/routes/+layout.svelte @@ -6,6 +6,7 @@ import FooterLinks from '$components/FooterLinks/FooterLinks.svelte'; import { backLink as backLinkStore } from '$libs/stores'; + import SearchResults from '$components/SearchResults/SearchResults.svelte'; let view: HTMLElement; @@ -36,6 +37,7 @@ +