diff --git a/packages/dashboard/src/assets/cookie.svg b/packages/dashboard/src/assets/cookie.svg new file mode 100644 index 00000000..0236869b --- /dev/null +++ b/packages/dashboard/src/assets/cookie.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/dashboard/src/pages/JobsPage.tsx b/packages/dashboard/src/pages/JobsPage.tsx index 1d0db317..383cc736 100644 --- a/packages/dashboard/src/pages/JobsPage.tsx +++ b/packages/dashboard/src/pages/JobsPage.tsx @@ -6,6 +6,7 @@ import { useJobsFilter } from "@/hooks/useJobsFilter"; import { JobsStats } from "@/components/JobsStats"; import { filterJobs } from "@/lib/jobs-filter"; import { StretchLoader } from "@/components/StretchLoader"; +import cookieSvg from "@/assets/cookie.svg"; export function JobsPage() { const [filter, setFilter] = useJobsFilter(); @@ -37,7 +38,12 @@ export function JobsPage() { {filteredJobs.length ? ( ) : ( -
There's nothing here...
+
+
+ +

There's no jobs here

+
+
)} );