'use client' import { Thing, WithContext } from 'schema-dts' interface StructuredDataProps { data: WithContext | any id?: string } /** * StructuredData component for rendering JSON-LD * Sanitizes output to prevent XSS attacks by replacing < with \u003c */ export default function StructuredData({ data, id }: StructuredDataProps) { return (