UNPKG

@osdeibi/bucky-seo-react

Version:

React component for managing meta tags, Open Graph, and dynamic JSON-LD

19 lines (17 loc) 315 B
export interface MetaTags { title?: string; description?: string; canonicalUrl?: string; robots?: string; og?: { title?: string; description?: string; image?: string; url?: string; type?: string; }; } export interface StructuredData { type: string; data: Record<string, any>; }