Socket
Socket
Sign inDemoInstall

seo-helper-plugins

Package Overview
Dependencies
9
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    seo-helper-plugins

###usage import {SEO} from "./DyamicSEO";


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
278 kB
Created
Weekly downloads
 

Readme

Source

#For static seo component use SEO(). It requires two parameter one is title and another is description. #FOR dynamic seo component use DynamicSEO(). It requires two agruments. One for the title and second one is meta which is array of object

###usage import {SEO} from "./DyamicSEO";

                        <SEO
                            title={title`}
                            meta={[
                                {
                                    property: "og:url",
                                    content: "url
                                },

                                {
                                    property: "og:title",
                                    content: "name"
                                },
                                {
                                    property: "og:description",
                                    content: "description"
                                },
                                {
                                    property: "og:image",
                                    content: "image"|
                                },
                                 {
                                     property: "fb:app_id",
                                     content: "fb_app_id"
                                 }
                            ]
                            }
                        />

#OpenGraph tags (marked with og:) are crawled by Facebook whenever you share a link through Messenger/ Facebook: meta={[ { property: "og:url", content: someUrl }, { property: "og:type", content: someArticle }, { property: "og:title", content: someTitle }, { property: "og:description", content: someDescription }, { property: "og:image", content: someImage }, { property: "fb:app_id", content: someFbAppId } ]

#Twitter tags (marked with twitter) are crawled by Twitter accordingly: meta={[ { property: "twitter:card", content: someSummary }, { property: "twitter:creator", content: someAuthorName }, { property: "twitter:title", content: someTitle }, { property: "twitter:description", content: someDescription }, { property: "twitter:image", content: someImage } ]

Keywords

FAQs

Last updated on 02 Feb 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc