diff --git a/app/not-found.tsx b/app/not-found.tsx
index ee57cd2..967c9db 100644
--- a/app/not-found.tsx
+++ b/app/not-found.tsx
@@ -10,6 +10,8 @@ export default function NotFound() {
src={"/FeedbackFlowLogo.png"}
alt="Logo Feedback Flow"
className="absolute -bottom-0 -right-0 hidden opacity-60 md:block"
+ width={350}
+ height={350}
/>
404 -Ruta No Encontrada
diff --git a/components/BannerImagePanel.tsx b/components/BannerImagePanel.tsx
index 64f5828..87167ca 100644
--- a/components/BannerImagePanel.tsx
+++ b/components/BannerImagePanel.tsx
@@ -49,6 +49,8 @@ const BannerImagePanel = ({ closeModal }: { closeModal: () => void }) => {
src={src}
alt={`Banner ${index + 1}`}
className="cursor-pointer"
+ width={200}
+ height={200}
/>
))}
diff --git a/components/NoDataCard.tsx b/components/NoDataCard.tsx
index 996736e..c60808e 100644
--- a/components/NoDataCard.tsx
+++ b/components/NoDataCard.tsx
@@ -7,7 +7,13 @@ interface NoDataCardProps {
const NoDataCard = ({ text }: NoDataCardProps) => {
return (
-
+
{text}
);
diff --git a/components/Profile/ProfileBanner.tsx b/components/Profile/ProfileBanner.tsx
index b6309cd..2fc712c 100644
--- a/components/Profile/ProfileBanner.tsx
+++ b/components/Profile/ProfileBanner.tsx
@@ -41,6 +41,8 @@ const ProfileBanner: React.FC = async ({ user }) => {
src={`/${user.bannerId}` || "/Banner1.svg"}
alt="Banner"
className="hidden h-auto w-56 md:block"
+ width={100}
+ height={100}
/>
diff --git a/components/UserProfileButton.tsx b/components/UserProfileButton.tsx
index 314bb56..6e844af 100644
--- a/components/UserProfileButton.tsx
+++ b/components/UserProfileButton.tsx
@@ -30,6 +30,8 @@ const UserProfileButton = ({
src={photoUrl}
alt={"User"}
className={`rounded-full ${sizes[size]}`}
+ width={300}
+ height={300}
/>
) : (