diff --git a/apps/nextjs/public/collections/blobert.svg b/apps/nextjs/public/collections/blobert.svg index 45e15604..4978bc24 100644 --- a/apps/nextjs/public/collections/blobert.svg +++ b/apps/nextjs/public/collections/blobert.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/apps/nextjs/src/app/_components/CollectionCard.tsx b/apps/nextjs/src/app/_components/CollectionCard.tsx index e5be31f2..00275589 100644 --- a/apps/nextjs/src/app/_components/CollectionCard.tsx +++ b/apps/nextjs/src/app/_components/CollectionCard.tsx @@ -18,7 +18,7 @@ export const CollectionCard = ({ collection }: Props) => { alt={collection.name} width={50} height={50} - className="rounded-full" + className="w-24 rounded-full" /> )}
diff --git a/apps/nextjs/src/app/user/[address]/blobert/page.tsx b/apps/nextjs/src/app/user/[address]/blobert/page.tsx new file mode 100644 index 00000000..48d140d5 --- /dev/null +++ b/apps/nextjs/src/app/user/[address]/blobert/page.tsx @@ -0,0 +1,23 @@ +import { Suspense } from "react"; +import { LoadingSkeletonGrid } from "@/app/_components/LoadingSkeletonGrid"; +import L2ERC721Table from "@/app/collection/[id]/(list)/L2ERC721Table"; +import { SUPPORTED_L2_CHAIN_ID } from "@/constants/env"; + +import { Collections, getCollectionAddresses } from "@realms-world/constants"; + +export default async function Page({ + params, +}: { + params: { address: string }; +}) { + return ( + }> + + + ); +}