@osdeibi/bucky-seo-react
Version:
React component for managing meta tags, Open Graph, and dynamic JSON-LD
18 lines (17 loc) • 350 B
TypeScript
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>;
}