Skip to content

Commit ad446cc

Browse files
committed
chore: Integrated DataBuddy analytics for tracking
1 parent 96ce4d9 commit ad446cc

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## [0.11.0] - 2026-01-25
6+
7+
### Added
8+
- DataBuddy analytics integration for tracking and insights
9+
510
## [0.10.2] - 2026-01-25
611

712
### Changed

apps/web/app/layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { GeistSans } from "geist/font/sans";
44
import { GeistMono } from "geist/font/mono";
55
import { Header } from "@/components/header";
66
import { Footer } from "@/components/footer";
7+
import { Databuddy } from "@databuddy/sdk/react";
78

89
export const metadata: Metadata = {
910
title: "QA Engineering Skills",
@@ -35,6 +36,7 @@ export default async function RootLayout({
3536
{children}
3637
</main>
3738
<Footer />
39+
<Databuddy clientId="0b92343b-a922-4b87-9d46-12b12eafeda5" />
3840
</body>
3941
</html>
4042
);

bun.lock

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qa-skills",
3-
"version": "0.10.2",
3+
"version": "0.11.0",
44
"private": true,
55
"scripts": {
66
"dev": "turbo run dev",
@@ -15,5 +15,8 @@
1515
"workspaces": [
1616
"apps/*",
1717
"packages/*"
18-
]
18+
],
19+
"dependencies": {
20+
"@databuddy/sdk": "^2.3.29"
21+
}
1922
}

0 commit comments

Comments
 (0)