UNPKG

techveda-lib-seo

Version:

SEO management package for React or JavaScript frameworks

14 lines (13 loc) 422 B
interface SeoProps { domainUrl: string; name?: string; title?: string; description?: string; image?: string; robots?: string; type?: string; socialMediaLinks?: string[]; twitterHandle?: string; } declare const Seo: ({ domainUrl, name, title, description, image, robots, type, socialMediaLinks, twitterHandle, }: SeoProps) => import("react/jsx-runtime").JSX.Element; export default Seo;