metax

Add SEO and other metadata tags to your Gatsby website.

  • metax

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
metax
1.2.1352 years ago4 years agoMinified + gzip package size for metax in KB

Readme

Metax
A ready-to-use React Helmet component for SEO, SMO and semantic web.

Getting Started

  1. Install

```shell script npm install metax
### 2. Import

```js
import { SEO } from "metax"
// or
const { SEO } = require("metax");

  1. Integrate

import React from "react"
import { SEO } from "metax"

const YourApp = () => (
   <>
      <SEO title={"Your page title"} />
      <article>Your content</article>
   </>
)