next-seo#DefaultSeoProps TypeScript Examples

The following examples show how to use next-seo#DefaultSeoProps. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Seo.tsx    From po8klasie with GNU General Public License v3.0 6 votes vote down vote up
defaultSeoConfig: DefaultSeoProps = {
  dangerouslySetAllPagesToNoIndex: APP_ENVIRONMENT !== 'production', // do not index test server
  defaultTitle: 'po8klasie - wyszukiwarka szkół średnich',
  titleTemplate: '%s | po8klasie',
  twitter: {
    handle: '@po8klasie',
    cardType: 'summary_large_image',
  },
}
Example #2
Source File: next-seo.config.ts    From coindrop with GNU General Public License v3.0 6 votes vote down vote up
defaultSeo: DefaultSeoProps = {
  openGraph: {
    type: 'website',
    locale: 'en_IE',
    url: 'https://coindrop.to',
    site_name: 'Coindrop',
    images: [
        {
            url: 'https://coindrop.to/piggy-256.png',
            width: 256,
            height: 256,
            alt: 'Coindrop logo',
        },
        {
          url: 'https://coindrop.to/piggy-512.png',
          width: 512,
          height: 512,
          alt: 'Coindrop logo',
        },
        {
            url: 'https://coindrop.to/OpenGraphLogoWithTagline.png',
            width: 1200,
            height: 630,
            alt: 'Coindrop: Zero-fee peer-to-peer payments',
        },
    ],
  },
  twitter: {
    handle: '@coindrop_to',
    site: '@coindrop_to',
    cardType: 'app',
  },
  facebook: {
      appId: '316849812722335',
  },
}