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.

10 lines (9 loc) 259 B
import React from "react"; interface Props { feature: string; children: React.ReactNode; isPro: boolean; variant?: "page" | "card"; } export default function ProGate({ feature, children, isPro, variant }: Props): React.JSX.Element; export {};