diff --git a/packages/grant-explorer/src/features/discovery/ExploreProjectsPage.tsx b/packages/grant-explorer/src/features/discovery/ExploreProjectsPage.tsx index 5030e01d05..0d8568d4a6 100644 --- a/packages/grant-explorer/src/features/discovery/ExploreProjectsPage.tsx +++ b/packages/grant-explorer/src/features/discovery/ExploreProjectsPage.tsx @@ -193,6 +193,43 @@ export function ExploreProjectsPage(): JSX.Element { )} + + + + + + GrantScan + + + } title={ collection ? "" @@ -202,7 +239,7 @@ export function ExploreProjectsPage(): JSX.Element { } action={ collection && ( -
+
) { +}: { + left?: ReactNode; + action?: ReactNode; + title: string; +} & ComponentProps<"div">) { return (
-

- {title} -

+ {left} + {title && ( +

+ {title} +

+ )}
{action}
{children}