diff options
| author | Dhravya Shah <[email protected]> | 2024-07-25 17:35:15 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-25 17:35:15 -0500 |
| commit | c57719446ae95c2bbd432d7b2b6648a23b35c351 (patch) | |
| tree | c6f7aca777c7f4748cc6dc335fe56fba8725af02 /apps/web/app/layout.tsx | |
| parent | add try catch in api/add for better error handling (diff) | |
| parent | ughh, regenerated migrations. my bad. (diff) | |
| download | supermemory-kush/experimental-thread.tar.xz supermemory-kush/experimental-thread.zip | |
solve merge conflictskush/experimental-thread
Diffstat (limited to 'apps/web/app/layout.tsx')
| -rw-r--r-- | apps/web/app/layout.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index cf6e9b0f..94a538ed 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -66,9 +66,14 @@ export default function RootLayout({ }): JSX.Element { return ( <html lang="en" className="overflow-x-hidden" suppressHydrationWarning> - {/* <head> - <ThemeScript /> - </head> */} + <head> + {/* Cloudflare web analytics */} + <script + defer + src="https://static.cloudflareinsights.com/beacon.min.js" + data-cf-beacon='{"token": "16d76ebb82c74d9983b71d09ab6617bc"}' + ></script> + </head> {/* TODO: when lightmode support is added, remove the 'dark' class from the body tag */} <body className={cn( |