it/web/components/JsonLd.tsx
2025-10-25 20:37:00 +02:00

13 lines
276 B
TypeScript

// components/JsonLd.tsx
"use client";
import React from "react";
export default function JsonLd({ data }: { data: Record<string, any> }) {
return (
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(data) }}
/>
);
}