diff --git a/components/rezo.js b/components/rezo.js index 562fb81..1850d45 100644 --- a/components/rezo.js +++ b/components/rezo.js @@ -1,13 +1,15 @@ -import {IconButton, Stack} from '@mui/material' +import {IconButton, Stack, Link} from '@mui/material' import PropTypes from 'prop-types' export default function Rezo({rezo}) { const {tit, lyen, icon} = rezo return ( - window.open(lyen, '_blank')}> - {icon} - + + + {icon} + + ) }