SEO and head tags
// File: /packages/my-first-theme/src/components/index.js
import { ..., Head } from "frontity";
// ...
const Root = ({ state, actions }) => {
const data = state.source.get(state.router.link);
return (
<>
<Head>
<title>My First Frontity Theme</title>
<meta
name="description"
content="Based on the Frontity step by step tutorial"
/>
</Head>
...
</>
);
};


Last updated