From a369676609d3f6a3b39eb00df6f1f2bc936a10af Mon Sep 17 00:00:00 2001 From: Thomas Camlong Date: Wed, 1 Oct 2025 19:08:16 +0200 Subject: [PATCH] feat(web): enhance community page --- web/src/app/community/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/src/app/community/page.tsx b/web/src/app/community/page.tsx index a775a9e8..1103e503 100644 --- a/web/src/app/community/page.tsx +++ b/web/src/app/community/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Suspense } from "react" import { CommunityIconSearch } from "@/components/community-icon-search" import { BASE_URL } from "@/constants" import { getCommunitySubmissions } from "@/lib/community" @@ -49,7 +50,9 @@ export default async function CommunityPage() {

Search through our collection of {icons.length} community-submitted icons.

- + Loading...}> + + ) }