manifold/web/components/NoSEO.tsx

10 lines
189 B
TypeScript
Raw Normal View History

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