mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 10:02:27 -04:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import Head from 'next/head'
|
|
|
|
/** Exclude page from search results */
|
|
export function NoSEO() {
|
|
return (
|
|
<Head>
|
|
<meta name="robots" content="noindex,follow" />
|
|
</Head>
|
|
)
|
|
}
|