almost done

This commit is contained in:
2025-09-12 23:20:36 +02:00
parent 7b41bd3f75
commit 37b8f0968a
168 changed files with 5022 additions and 3709 deletions

10
lib/umami.ts Normal file
View File

@@ -0,0 +1,10 @@
// file: types/umami.d.ts
declare global {
interface Window {
umami?: {
track: (eventName: string, eventData?: Record<string, any>) => void;
};
}
}
export {}; // This makes the file a module