# Seo
The `` component renders SEO meta tags in the document `head`. Add the `` to your `root.jsx` before the `` and `` components. SEO metadata is set on a per-route basis using Remix [loader functions](https://remix.run/docs/en/v1/guides/data-loading). Learn more about [how SEO works in Hydrogen](https://shopify.dev/docs/custom-storefronts/hydrogen/seo).
```js
import {Seo} from '@shopify/hydrogen';
import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from '@remix-run/react';
export default function App() {
/** ... */
return (
{/* Add before and */}
);
}
```
```ts
import {Seo} from '@shopify/hydrogen';
import {
Links,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from '@remix-run/react';
export default function App() {
/** ... */
return (
{/* Add before and */}
);
}
```
## Props
### SeoProps
### debug
value: `boolean`
Enable debug mode that prints SEO properties for route in the console