gallery.badmanners.xyz/src/pages/search.astro

16 lines
640 B
Text

---
import SearchComponent from "astro-pagefind/components/Search";
import GalleryLayout from "../layouts/GalleryLayout.astro";
---
<script>
import { WebAssembly } from "polywasm";
globalThis.WebAssembly = globalThis.WebAssembly || WebAssembly;
</script>
<GalleryLayout pageTitle="Search">
<meta slot="head" property="og:description" content="Bad Manners || Search" />
<h1 class="m-2 text-3xl font-semibold text-stone-800 dark:text-stone-100">Search</h1>
<hr class="mb-3 ml-[2px] mt-2 h-[4px] max-w-xs rounded-sm bg-stone-800 dark:bg-stone-100" />
<SearchComponent id="search" className="pagefind-ui my-4" />
</GalleryLayout>