import { useTranslation } from 'next-i18next' import Image from 'next/image' import { Box } from '@mui/material' import logo from './assets/warframe_logo.png' const Hero = () => { const { t } = useTranslation('home') return ( logo

Market Gaps

{t('description')}

) } export default Hero