interface StructuredDataProps {
  schema: Record<string, unknown> | Record<string, unknown>[];
}

/**
 * Renders a JSON-LD structured data script tag.
 * Use inside Inertia <Head> for page-level schema, or anywhere in the document.
 */
export function StructuredData({ schema }: StructuredDataProps) {
  return <script type="application/ld+json">{JSON.stringify(schema)}</script>;
}
