From 53fa4e48da715bcd8ea4bf0e5f2073d3861465bb Mon Sep 17 00:00:00 2001
From: Diogo Soares <32431609+DiogoSoaress@users.noreply.github.com>
Date: Tue, 29 Oct 2024 10:59:29 +0100
Subject: [PATCH] styles: cneter align section title
---
.../Home/TitleSlidingIcons/index.tsx | 32 +++++++++----------
1 file changed, 16 insertions(+), 16 deletions(-)
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