Appearance
Astro
TIP
If you're looking for Canary Cloud
, please refer to this page instead.
Astro is web framework for content-driven websites.
Two steps to integrate
Step 1: Configure Pagefind indes
bash
npm install astro-pagefind
js
import { defineConfig } from "astro/config";
import pagefind from "astro-pagefind";
export default defineConfig({
...
integrations: [pagefind()],
...
});
Step 2: Create search component
bash
npm install @getcanary/web
You can customize and place it anywhere you want.
html
<script>
import '@getcanary/web/components/canary-root.js'
import '@getcanary/web/components/canary-provider-pagefind.js'
import '@getcanary/web/components/canary-modal.js'
import '@getcanary/web/components/canary-trigger-searchbar.js'
import '@getcanary/web/components/canary-content.js'
import '@getcanary/web/components/canary-input.js'
import '@getcanary/web/components/canary-search.js'
import '@getcanary/web/components/canary-search-results.js'
</script>
<canary-root framework="astro">
<canary-provider-pagefind>
<canary-modal>
<canary-trigger-searchbar slot="trigger"></canary-trigger-searchbar>
<canary-content slot="content">
<canary-input slot="input"></canary-input>
<canary-search slot="mode">
<canary-search-results slot="body"></canary-search-results>
</canary-search>
</canary-content>
</canary-modal>
</canary-provider-pagefind>
</canary-root>