diff options
| author | Yuval Adam <_@yuv.al> | 2024-09-23 16:22:22 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-09-23 16:22:22 +0200 |
| commit | d25a7f1a8bb3a39331d87cf5e0057f5c88c58ac8 (patch) | |
| tree | 42e17c9c3e56052f1609ad57f7787493b616de67 /app/layout.tsx | |
| parent | 25799e446197c238989cc748e0bd7f350a1d6d67 (diff) | |
Move fathom to root
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> |
