summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-23 17:15:05 +0200
committerYuval Adam <_@yuv.al>2025-05-23 17:15:20 +0200
commita4b1886b210213b0becf1a134d06882db631f647 (patch)
treed20cc2b0f1b8498d14f5c69f54c619f47b215fd0 /src/components
parentf32aa30f2f0722fb659a22ddc57cdf3bd79a4ab5 (diff)
Add analytics
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Analytics.astro33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/components/Analytics.astro b/src/components/Analytics.astro
new file mode 100644
index 0000000..0352bea
--- /dev/null
+++ b/src/components/Analytics.astro
@@ -0,0 +1,33 @@
+---
+import { analytics } from "../config/analytics";
+
+const GOOGLE_ANALYTICS_ID = analytics.googleAnalyticsId;
+const FATHOM_ANALYTICS_ID = analytics.fathomAnalyticsId;
+---
+
+{
+ GOOGLE_ANALYTICS_ID && (
+ <script
+ async
+ src={`https://www.googletagmanager.com/gtag/js?id=${GOOGLE_ANALYTICS_ID}`}
+ />
+ <script define:vars={{ GOOGLE_ANALYTICS_ID }} is:inline>
+ window.dataLayer = window.dataLayer || [];
+ function gtag() {
+ dataLayer.push(arguments);
+ }
+ gtag("js", new Date());
+ gtag("config", GOOGLE_ANALYTICS_ID);
+ </script>
+ )
+}
+{
+ FATHOM_ANALYTICS_ID && (
+ <script
+ src="https://cdn.usefathom.com/script.js"
+ data-site={FATHOM_ANALYTICS_ID}
+ defer
+ />
+ )
+}
+