diff --git a/src/components/Home/TitleSlidingIcons/index.tsx b/src/components/Home/TitleSlidingIcons/index.tsx
index 1252550eb..5983d6422 100644
--- a/src/components/Home/TitleSlidingIcons/index.tsx
+++ b/src/components/Home/TitleSlidingIcons/index.tsx
@@ -1,21 +1,21 @@
import { type BaseBlock } from '@/components/Home/types'
-import { Box, Typography } from '@mui/material'
+import { Typography } from '@mui/material'
import IconCarouselElement, { type Carousel } from './IconCarouselElement'
-const TitleSlidingIcons = ({ title, text, icons, reverse = false }: BaseBlock & Carousel) => {
- return (
- <>
-
- {title}
- {text && (
-
- {text}
-
- )}
-
-
- >
- )
-}
+const TitleSlidingIcons = ({ title, text, icons, reverse = false }: BaseBlock & Carousel) => (
+ <>
+
+ {title}
+
+
+ {text && (
+
+ {text}
+
+ )}
+
+
+ >
+)
export default TitleSlidingIcons