diff options
| -rw-r--r-- | src/pages/index.astro | 9 | ||||
| -rw-r--r-- | src/pages/privacy.astro | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index d41f1fa..96dfa0c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,6 @@ --- -import { Geshem } from '../components/Geshem'; -import '../styles/global.css'; +import { Geshem } from "../components/Geshem"; +import "../styles/global.css"; const { date } = Astro.params; --- @@ -10,9 +10,12 @@ const { date } = Astro.params; <meta charset="utf-8" /> <link rel="icon" type="image/png" href="/favicon.png" /> <meta name="viewport" content="width=device-width" /> - <meta name="generator" content={Astro.generator} /> <title>Geshem - Rain Radar</title> <meta name="description" content="Israel Rain Radar" /> + <script + src="https://cdn.usefathom.com/script.js" + data-site="MBXPLVRM" + defer></script> </head> <body> <Geshem client:load date={date} /> diff --git a/src/pages/privacy.astro b/src/pages/privacy.astro index 12ac001..d01a26b 100644 --- a/src/pages/privacy.astro +++ b/src/pages/privacy.astro @@ -16,6 +16,8 @@ <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> <link rel="manifest" href="/manifest.json" /> <title>Privacy Policy | geshem.space</title> + <script src="https://cdn.usefathom.com/script.js" data-site="MBXPLVRM" defer + ></script> <style> body { overflow: hidden; |
