# 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");
```

### 3. Integrate

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

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