diff --git a/frontend/src/app/(public)/page.tsx b/frontend/src/app/(public)/page.tsx
index 6582e53..b8ab3eb 100644
--- a/frontend/src/app/(public)/page.tsx
+++ b/frontend/src/app/(public)/page.tsx
@@ -287,7 +287,7 @@ export default function Home() {
}))
: FALLBACK_PROJECTS
).map((project) => (
-
+
@@ -299,7 +299,7 @@ export default function Home() {
-
+
))}
diff --git a/frontend/src/app/(public)/projetos/page.tsx b/frontend/src/app/(public)/projetos/page.tsx
index 3f84ad0..aa2157c 100644
--- a/frontend/src/app/(public)/projetos/page.tsx
+++ b/frontend/src/app/(public)/projetos/page.tsx
@@ -168,7 +168,7 @@ export default function ProjetosPage() {
{!loading && filteredProjects.length > 0 && (
{filteredProjects.map((project) => (
-
+
)}
-
+
Ver Detalhes
-
+
-
+
))}
)}
diff --git a/frontend/src/app/[locale]/page.tsx b/frontend/src/app/[locale]/page.tsx
index 63f174a..2a6adaa 100644
--- a/frontend/src/app/[locale]/page.tsx
+++ b/frontend/src/app/[locale]/page.tsx
@@ -281,7 +281,7 @@ export default function Home() {
}))
: FALLBACK_PROJECTS
).map((project) => (
-
+
@@ -293,7 +293,7 @@ export default function Home() {
-
+
))}
diff --git a/frontend/src/app/[locale]/projetos/page.tsx b/frontend/src/app/[locale]/projetos/page.tsx
index e7dbfa9..b2fcd2b 100644
--- a/frontend/src/app/[locale]/projetos/page.tsx
+++ b/frontend/src/app/[locale]/projetos/page.tsx
@@ -195,7 +195,7 @@ export default function ProjetosPage() {
const description = project.description || (locale === 'pt' ? 'Descrição disponível em breve.' : locale === 'es' ? 'Descripción disponible pronto.' : 'Description coming soon.');
return (
-
+
@@ -212,11 +212,11 @@ export default function ProjetosPage() {
{description}
-
+
{t('projects.viewDetails')}
-
+
-
+
);
})}