Skip to content

Commit af40dbd

Browse files
committed
feat: add analytics
1 parent fcb3549 commit af40dbd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/layouts/Layout.astro

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export interface Props {
1111
}
1212
1313
const { title } = Astro.props;
14+
const rybbitSiteId = "3";
1415
---
1516

1617
<!DOCTYPE html>
@@ -47,6 +48,15 @@ const { title } = Astro.props;
4748
content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool."
4849
/>
4950
<meta property="twitter:image" content="/sm-preview.jpg" />
51+
<script
52+
src="https://mk-analytics.dathere.com/api/script.js"
53+
data-site-id={rybbitSiteId}
54+
data-session-replay="true"
55+
data-track-errors="true"
56+
data-web-vitals="true"
57+
async
58+
defer
59+
></script>
5060
</head>
5161
<body>
5262
<slot />

0 commit comments

Comments
 (0)