<Stack style={{ width: 800, height: 600 }}>
<img src="/eg-bg.jpg" alt="Hero" />
<Positioned top={0} left={0} right={0}>
<Container
paddingVertical={24}
paddingHorizontal={32}
decoration={{
gradient: {
colors: ['rgba(0, 0, 0, 0)', 'rgba(0, 0, 0, 0.8)'],
begin: 'topCenter',
end: 'bottomCenter',
},
}}
>
<Column spacing={8}>
<h2 style={{ color: 'white', margin: 0 }}>Title</h2>
<p style={{ color: 'rgba(255, 255, 255, 0.9)' }}>Description</p>
</Column>
</Container>
</Positioned>
</Stack>