Skip to content

Commit

Permalink
fix: add noindex to cms ui
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenle committed Aug 22, 2024
1 parent e56a367 commit 00d8006
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/root-cms/core/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ function App(props: AppProps) {
return (
<html>
<head>
<meta charset="utf-8" />
<title>{props.title}</title>
<meta name="robots" content="noindex" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
Expand Down Expand Up @@ -152,6 +154,7 @@ function SignIn(props: SignInProps) {
<head>
<meta charset="utf-8" />
<title>{props.title}</title>
<meta name="robots" content="noindex" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
Expand Down

0 comments on commit 00d8006

Please sign in to comment.