import { Box, Grid, Image, Text } from 'theme-ui' export default function Project({ title, description, color, img, itemId }) { return ( `linear-gradient(to bottom, ${color[0]}, ${color[1]})`, color: 'white', overflow: 'clip', width: ['100vw', '40rem', '50rem', '70rem'], height: ['25rem', '40rem'], transformOrigin: 'center', mr: 16, // this is v janky please ignore, thank you. ml: ['1rem', '1rem', '1rem', `${itemId === 0 && 'calc(50vw - 36.5rem)'}`], scrollSnapAlign: 'center' }} itemId={itemId} > {title} {description} {title} ) }