metax
Version:
Add SEO and other metadata tags to your Gatsby website.
34 lines (24 loc) • 449 B
Markdown
A ready-to-use React Helmet component for SEO, SMO and semantic web.
```shell script
npm install metax
```
```js
import { SEO } from "metax"
// or
const { SEO } = require("metax");
```
```jsx
import React from "react"
import { SEO } from "metax"
const YourApp = () => (
<>
<SEO title={"Your page title"} />
<article>Your content</article>
</>
)
```