46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
![]() |
import { Box, Link, Text } from '@chakra-ui/react';
|
||
|
|
||
|
type DimmedMoreProps = {
|
||
|
text: string;
|
||
|
};
|
||
|
|
||
|
export function DimmedMore(props: DimmedMoreProps) {
|
||
|
const { text } = props;
|
||
|
|
||
|
return (
|
||
|
<Box position='relative' textAlign='center' bottom='20px'>
|
||
|
<Box
|
||
|
opacity={1}
|
||
|
pointerEvents='none'
|
||
|
position='absolute'
|
||
|
bottom={0}
|
||
|
height='200px'
|
||
|
width='100%'
|
||
|
background='linear-gradient(180deg, transparent, #e6fffa)'
|
||
|
/>
|
||
|
|
||
|
<Link
|
||
|
rounded='20px'
|
||
|
display='inline'
|
||
|
bg='green.600'
|
||
|
color='white'
|
||
|
p='7px 20px'
|
||
|
href={'#'}
|
||
|
fontWeight={800}
|
||
|
fontSize='11px'
|
||
|
textTransform='uppercase'
|
||
|
my='25px'
|
||
|
position='relative'
|
||
|
_hover={{
|
||
|
textDecoration: 'none',
|
||
|
'& .forward-arrow': {
|
||
|
transform: 'translateX(3px)'
|
||
|
}
|
||
|
}}>
|
||
|
{text}
|
||
|
<Text d='inline-block' as='span' transition='200ms' ml='4px' className='forward-arrow'>→</Text>
|
||
|
</Link>
|
||
|
</Box>
|
||
|
);
|
||
|
}
|