diff --git a/components/dashboard/GoalStats.tsx b/components/dashboard/GoalStats.tsx index 13853e9..f6303aa 100644 --- a/components/dashboard/GoalStats.tsx +++ b/components/dashboard/GoalStats.tsx @@ -1,6 +1,8 @@ 'use client' +import Link from 'next/link' import { formatNumber } from '@/lib/utils/format' +import { BookOpenIcon, ArrowRightIcon } from '@ciphera-net/ui' import type { GoalCountStat } from '@/lib/api/stats' interface GoalStatsProps { @@ -39,10 +41,25 @@ export default function GoalStats({ goalCounts, siteId, dateRange }: GoalStatsPr )) ) : ( -
- No custom events in this period. Track goals with pulse.track('event_name') in your snippet.
-
+ Add pulse.track('event_name') where actions happen on your site, then see counts here. Check our guide for step-by-step instructions.
+