UNPKG

gatsby-plugin-next-seo

Version:
23 lines 794 B
import { GatsbySeoProps } from '../types'; /** * This component render the tags in the `<head>` for SEO on a per page basis. * As a bare minimum, you should add a title and description. * * @remarks * * ```tsx * import React from 'react'; * import { GatsbySeo } from 'gatsby-plugin-next-seo'; * * export default () => ( * <> * <GatsbySeo title='Simple Usage Example' description='A short description goes here.' /> * <p>Simple Usage</p> * </> * ); * ``` * * @public */ export declare const GatsbySeo: ({ metaTags, linkTags, canonical, description, facebook, htmlAttributes, language, languageAlternates, mobileAlternate, nofollow, noindex, openGraph, title, titleTemplate, twitter, base, }: GatsbySeoProps) => JSX.Element; //# sourceMappingURL=gatsby-seo.d.ts.map