// custom project card styleexport const PROJECT_CARD_STYLE = { HIDE_COMMENT: false, // Hide the comment button HIDE_UPVOTE: false, // Hide the upvote button HIDE_RANK: false, // Hide the rank text COLLECTION_PROJECT_BIG_CARD: true, // Big card for projects in collection BIG_CARD: false, // Big card for projects, which is recommended to be set to true for directory apps} as const// custom project list styleexport const PROJECT_LIST_STYLE = { GRID_COLUMNS: 1, // Number of columns in the grid} as const// custom collections list styleexport const COLLECTION_LIST_STYLE = { GRID_COLUMNS: 3, // Number of columns in the grid for collections} as const// custom collection project list styleexport const COLLECTION_PROJECT_LIST_STYLE = { GRID_COLUMNS: 3, // Number of columns in the grid for collections} as const