metax
v1.2.135
Published
Add SEO and other metadata tags to your Gatsby website.
Downloads
56
Maintainers
Readme
Metax
A ready-to-use React Helmet component for SEO, SMO and semantic web.
Getting Started
1. Install
npm install metax
2. Import
import { SEO } from "metax"
// or
const { SEO } = require("metax");
3. Integrate
import React from "react"
import { SEO } from "metax"
const YourApp = () => (
<>
<SEO title={"Your page title"} />
<article>Your content</article>
</>
)