···23import useSembleCollections from '@/features/collections/lib/queries/useSembleCollectionts';
4import InfiniteScroll from '@/components/contentDisplay/infiniteScroll/InfiniteScroll';
5+import { Center, Loader, SimpleGrid } from '@mantine/core';
6import SembleCollectionsError from './Error.SembleCollectionsContainer';
7import CollectionCard from '@/features/collections/components/collectionCard/CollectionCard';
8import SembleEmptyTab from '../../components/sembleEmptyTab/SembleEmptyTab';
···47 </Center>
48 }
49 >
50+ <SimpleGrid cols={{ base: 1, sm: 2, lg: 4 }} spacing="md">
51 {allCollections.map((col) => (
52+ <CollectionCard collection={col} showAuthor />
00000000053 ))}
54+ </SimpleGrid>
55 </InfiniteScroll>
56 );
57}
-1
src/webapp/next-env.d.ts
···1/// <reference types="next" />
2/// <reference types="next/image-types/global" />
3-/// <reference path="./.next/types/routes.d.ts" />
45// NOTE: This file should not be edited
6// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
···1/// <reference types="next" />
2/// <reference types="next/image-types/global" />
034// NOTE: This file should not be edited
5// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.