feat(empty-states): add undraw illustrations to empty state screens

Add brand-orange recolored SVG illustrations from undraw to five empty
states: sites list, dashboard chart, funnels, journeys, and behavior.
This commit is contained in:
Usman Baig
2026-03-23 15:23:26 +01:00
parent d6cef95c4b
commit 645e3e78ef
10 changed files with 209 additions and 12 deletions

View File

@@ -414,7 +414,12 @@ export default function Chart({
</div>
{!hasData || !hasAnyNonZero ? (
<div className="flex h-96 flex-col items-center justify-center gap-2">
<div className="flex h-96 flex-col items-center justify-center gap-3">
<img
src="/illustrations/no-data.svg"
alt="No data available"
className="w-48 h-auto mb-2"
/>
<p className="text-sm text-neutral-400 dark:text-neutral-500">
{!hasData ? 'No data for this period' : `No ${METRIC_CONFIGS.find((m) => m.key === metric)?.label.toLowerCase()} recorded`}
</p>