This PR adds a new UI sequoia-comments web component that can render comments for a site.standard.document if the bskyPostRef exists in the record. By default the web component will look for the atUri of the document in the <link> tags used for verification. It can also take the URI as a parameter:
<!-- Use attributes for explicit control -->
<sequoia-comments
document-uri="at://did:plc:example/site.standard.document/abc123"
depth="10">
</sequoia-comments>
The component can also be customized with the following CSS variables
:root {
--sequoia-accent-color: #3A5A40;
--sequoia-border-radius: 12px;
--sequoia-bg-color: #1a1a1a;
--sequoia-fg-color: #F5F3EF;
--sequoia-border-color: #333;
--sequoia-secondary-color: #8B7355;
}
The PR includes updates to the docs with the command to add the component, and a new page for how the components work and can be configured.