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