From dd08bdc8b366f9648c15379f6dbdc5a8824ce524 Mon Sep 17 00:00:00 2001 From: Wassim Date: Tue, 6 Feb 2024 11:10:31 +0100 Subject: [PATCH] Testing fathom integration --- app/layout.tsx | 29 ++++++++++++++--------------- lib/fathom.ts | 19 +++++++++++++++++++ package.json | 1 + yarn.lock | 6 ++++++ 4 files changed, 40 insertions(+), 15 deletions(-) create mode 100644 lib/fathom.ts diff --git a/app/layout.tsx b/app/layout.tsx index 5c96a3c..cb6f765 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,24 +1,24 @@ -import type { Metadata } from 'next' -import { Inter } from 'next/font/google' -import './globals.css' -import { Footer } from '@/components/Footer' -import { ThemeProvider } from "@/components/theme-provider" -import { Analytics } from '@vercel/analytics/react'; +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; +import { Footer } from "@/components/Footer"; +import { ThemeProvider } from "@/components/theme-provider"; +import Fathom from "@/lib/fathom"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: 'Open Actions Directory', - description: 'Discover and Build Lens Open Actions.' -} + title: "Open Actions Directory", + description: "Discover and Build Lens Open Actions.", +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( - + {children} - +