feat: add empty state to events grid when no events exist
All checks were successful
Backend Check Build (NixCN CMS) TeamCity build finished
Client CMS Check Build (NixCN CMS) TeamCity build finished

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2026-02-05 19:53:46 +08:00
parent 7afc6ec25e
commit 45159484d9
3 changed files with 147 additions and 24 deletions

View File

@@ -7,7 +7,7 @@ export const Route = createFileRoute('/_workbenchLayout/events')({
function RouteComponent() {
return (
<div className="py-4 px-6 md:gap-6 md:py-6">
<div className="py-4 px-6 md:gap-6 md:py-6 h-full">
<EventGridContainer />
</div>
);