diff options
Diffstat (limited to 'app/layout.tsx')
| -rw-r--r-- | app/layout.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/layout.tsx b/app/layout.tsx index c3a6d1d..061f9da 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,7 @@ import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; +import Fathom from "./components/Fathom"; const geistSans = localFont({ src: "./fonts/GeistVF.woff", @@ -28,6 +29,7 @@ export default function RootLayout({ <body className={`${geistSans.variable} ${geistMono.variable} antialiased`} > + <Fathom /> {children} </body> </html> |
