mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Zero client JS, 165 static pages, self-hosted fonts, Otter Orange design system. Includes tool SEO data for all 157 tools, enterprise page, and updated e2e landing tests.
13 lines
279 B
Plaintext
13 lines
279 B
Plaintext
---
|
|
interface Props {
|
|
data: Record<string, unknown> | Record<string, unknown>[];
|
|
}
|
|
|
|
const { data } = Astro.props;
|
|
const schemas = Array.isArray(data) ? data : [data];
|
|
---
|
|
|
|
{schemas.map((schema) => (
|
|
<script type="application/ld+json" set:html={JSON.stringify(schema)} />
|
|
))}
|