Skip to main content

SEO & meta data

React Helmet Logo

Falcon Platform uses React Helmet Async to manage meta data such as page titles and meta descriptions. React Helmet supports server side rendering making it perfect for Falcon Platform.

Example code

client/src/App.js

import { Helmet } from 'react-helmet-async';
...
<Helmet htmlAttributes={{ lang: locale }} defaultTitle="FALCON STORE" titleTemplate="%s | FALCON STORE">
<meta name="description" content="Find your next big thing." />
<meta name="theme-color" content="#262828" />
<meta name="msapplication-TileColor" content="#262828" />
<meta name="format-detection" content="telephone=yes" />
<meta property="og:title" content="FALCON STORE" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Find your next big thing." />
<meta property="og:url" content="/" />
</Helmet>

Nested or latter components will override duplicates.