mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-03 16:10:26 +03:00
13 lines
254 B
Plaintext
13 lines
254 B
Plaintext
|
---
|
||
|
import type { WithContext, Thing } from "schema-dts";
|
||
|
|
||
|
type Props = {
|
||
|
readonly schema: WithContext<Thing>;
|
||
|
};
|
||
|
|
||
|
const { schema } = Astro.props;
|
||
|
const json = JSON.stringify(schema);
|
||
|
---
|
||
|
|
||
|
<script is:inline type="application/ld+json" set:html={json} />
|