diff options
| -rw-r--r-- | app/components/Geshem.tsx | 2 | ||||
| -rw-r--r-- | app/layout.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Geshem.tsx b/app/components/Geshem.tsx index ba5f65c..f482b9d 100644 --- a/app/components/Geshem.tsx +++ b/app/components/Geshem.tsx @@ -5,7 +5,6 @@ import React, { useState, useEffect } from "react"; import { Map } from "./Map"; import { Slider } from "./Slider"; import { DateTime } from "./Datetime"; -import Fathom from "./Fathom"; import { IMAGES_BASE_URL, PLAYBACK_HOURS, PLAYBACK_SLOTS } from "./config"; @@ -75,7 +74,6 @@ export function Geshem() { return ( <> - <Fathom /> <Map images={images} slider={slider} /> <DateTime images={images} slider={slider} /> <Slider slider={slider} playback={fragment} setSlider={setSlider} /> 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> |
