Skip to content

Commit 4885bce

Browse files
authored
Merge pull request #1 from permaweb/copy-update
Update banner/thumbnail size recommendations
2 parents ed1271d + ff3759d commit 4885bce

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

src/helpers/language.ts

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const language = {
2727
atomicAssets: `Atomic Assets`,
2828
back: `Back`,
2929
banner: `Banner`,
30+
bannerInfo: `Upload a banner image to display at the top of the collection. (Recommended size: 16:9 aspect ratio, 1920 x 1080 pixels).`,
3031
bio: `Bio`,
3132
cancel: `Cancel`,
3233
calculating: `Calculating`,
@@ -218,6 +219,7 @@ export const language = {
218219
title: `Title`,
219220
titleNotFound: `Title not found`,
220221
thumbnail: `Thumbnail`,
222+
thumbnailInfo: `Upload a thumbnail image for the collection. (Recommended size: 1:1 aspect ratio, 300 x 300 pixels).`,
221223
thumbnailDescription: `Upload an image that represents your collection`,
222224
toggleTheme: `Toggle theme`,
223225
totalAssets: `Total`,

src/views/Docs/DocsDetail/MD/upload-collection.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Create an atomic asset collection from either existing atomic assets or uploadin
1717
- In the field below determine how many fractional tokens are allowed for each of your atomic assets.
1818
- Collection code - A collection code is a unique identifier for your collection. It can be used to identify which collection an asset belongs to in other applications. Ex: On Bazar, if your collection code is "cryptopunk," your collection assets are named "cryptopunk#1," "cryptopunk#2," etc...).
1919
- Asset topics: Select topics that best describe your atomic assets. Add as many custom topics as needed. These topics assist in discoverability on the permaweb. Learn more about asset discoverability tags (ANS-110) [here](https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-110.md).
20-
- Banner: Upload a banner image to display at the top of the collection.
21-
- Thumbnail: Upload a thumbnail image for the collection.
20+
- Banner: Upload a banner image to display at the top of the collection. (Recommended size: 16:9 aspect ratio, 1920 x 1080 pixels).
21+
- Thumbnail: Upload a thumbnail image for the collection. (Recommended size: 1:1 aspect ratio, 300 x 300 pixels).

src/views/Upload/UploadBanner/UploadBanner.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// tooltip={language.bannerInfo}
2+
13
import React from 'react';
24
import { useDispatch, useSelector } from 'react-redux';
35
import { ReactSVG } from 'react-svg';

src/views/Upload/UploadThumbnail/UploadThumbnail.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// tooltip={language.thumbnailInfo}
2+
13
import React from 'react';
24
import { useDispatch, useSelector } from 'react-redux';
35
import { ReactSVG } from 'react-svg';

0 commit comments

Comments
 (0)