diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx
index 96634f8..69175a7 100644
--- a/src/components/Hero.jsx
+++ b/src/components/Hero.jsx
@@ -1,6 +1,5 @@
import React from 'react';
import { Button } from "@/components/ui/button";
-import ReactMarkdown from 'react-markdown';
const Hero = ({ title, title2, subTitle, logos, onSmoothScroll }) => {
diff --git a/src/components/Info.jsx b/src/components/Info.jsx
index 4fa670d..d1e86b3 100644
--- a/src/components/Info.jsx
+++ b/src/components/Info.jsx
@@ -44,7 +44,7 @@ const Info = ({ content }) => {
max={64}
className={`w-full text-[${colors[colorIndex]}] uppercase font-semibold leading-none`}
>
- {index === array.length - 1 ? 'de ' + line.trim() : line.trim()}
+ {index === array.length - 1 ? `de ${line.trim()}` : line.trim()}
);
diff --git a/src/components/MediaGallery.jsx b/src/components/MediaGallery.jsx
index d6def8a..0fa1a22 100644
--- a/src/components/MediaGallery.jsx
+++ b/src/components/MediaGallery.jsx
@@ -67,7 +67,7 @@ const MediaGallery = ({ markdown, metaData }) => {
{item.image ? (
) : item.video ? (
-
+
) : null}
@@ -100,7 +100,7 @@ const MediaGallery = ({ markdown, metaData }) => {
{currentItem?.image ? (
) : currentItem?.video ? (
-
+
) : null}