This commit is contained in:
2026-03-10 18:31:23 +01:00
parent 66225e4662
commit 4455605394
180 changed files with 9005 additions and 0 deletions

15
components/json-ld.tsx Normal file
View File

@@ -0,0 +1,15 @@
export function JsonLd({
id,
data,
}: {
id: string;
data: Record<string, unknown>;
}) {
return (
<script
id={id}
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(data) }}
/>
);
}