import Item from './item' const itemConfig = Array.from({ length: 8 }).map((_, index) => { return { isFirst: index === 0, isLast: index === 7, titleWidth: (index + 1) % 2 === 0 ? 'w-1/3' : 'w-2/5', releaseNotesWidth: (index + 1) % 2 === 0 ? 'w-3/4' : 'w-4/6', } }) const Loading = () => { return