feat: Integrate Directus CMS, add i18n with next-intl, and configure project tooling with pnpm, husky, and commitlint.**

This commit is contained in:
2026-02-05 01:18:06 +01:00
parent 765cfd4c69
commit e80140f7cf
65 changed files with 12793 additions and 5879 deletions

View File

@@ -0,0 +1,3 @@
export interface AnalyticsService {
trackEvent(name: string, properties?: Record<string, unknown>): void;
}

View File

@@ -0,0 +1,5 @@
import type { AnalyticsService } from "./analytics-service";
export class NoopAnalyticsService implements AnalyticsService {
trackEvent() {}
}