UNPKG

sanity-plugin-seo

Version:

Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.

12 lines (11 loc) 357 B
import React from "react"; interface Props { pagesWithIssues: number; totalIssues: number; missingKeywords: number; noMetaImage: number; avgScore: number; loaded: boolean; } export default function BulkStatCards({ pagesWithIssues, totalIssues, missingKeywords, noMetaImage, avgScore, loaded, }: Props): React.JSX.Element; export {};