manifold/web/components/NoSEO.tsx

11 lines
190 B
TypeScript
Raw Normal View History

2022-10-06 20:50:29 +00:00
import Head from 'next/head'
2022-10-06 20:49:39 +00:00
/** Exclude page from search results */
export function NoSEO() {
return (
<Head>
2022-10-06 20:50:29 +00:00
<meta name="robots" content="noindex,follow" />
2022-10-06 20:49:39 +00:00
</Head>
)
2022-10-06 20:50:29 +00:00
}