diff options
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22e5289..96a7ea1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,4 @@ +import Head from 'next/head' import type { Metadata } from 'next' import { Inter } from 'next/font/google' import Footer from '../components/Footer/Footer' @@ -17,10 +18,12 @@ export default function RootLayout({ }) { return ( <html lang="en"> + <Head> + <script defer src="https://analytics.moekyun.me/script.js" data-website-id="c9115390-947a-4077-b885-b136bb813e1a"></script> + </Head> <body className={inter.className}>{children} <Footer /> </body> - <script defer src="https://analytics.moekyun.me/script.js" data-website-id="c9115390-947a-4077-b885-b136bb813e1a"></script> </html> ) -} +}
\ No newline at end of file |
