Skip to content

Commit

Permalink
add google search console meta tag
Browse files Browse the repository at this point in the history
  • Loading branch information
nakzyu committed Jun 13, 2024
1 parent f198ade commit 10196e4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions apps/docs/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Html, Head, Main, NextScript } from "next/document";

export default function Document() {
return (
<Html lang="en">
<Head>
<meta
name="google-site-verification"
content="uNf_pjnoPY77W-MI0arlXSAOKt6zglU_dp9tJvpqEQ8"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}

1 comment on commit 10196e4

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for headlessui-react-native-docs ready!

✅ Preview
https://headlessui-react-native-docs-h0fs0f0pn-nakzyus-projects.vercel.app

Built with commit 10196e4.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.