Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 7a15f98

Browse files
committed
Update layout.tsx
1 parent 7639f1b commit 7a15f98

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/admin/layout.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Head from "next/head";
12
import type { FC, PropsWithChildren } from "react";
23

34
export const metadata = {
@@ -7,6 +8,9 @@ export const metadata = {
78
const AdminLayout: FC<PropsWithChildren> = ({ children }) => {
89
return (
910
<html lang="en">
11+
<Head>
12+
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js" async />
13+
</Head>
1014
<body>{children}</body>
1115
</html>
1216
);

0 commit comments

Comments
 (0)