diff --git a/src/app/pt/perguntas/[slug]/page.tsx b/src/app/pt/perguntas/[slug]/page.tsx index 5212229..298400f 100644 --- a/src/app/pt/perguntas/[slug]/page.tsx +++ b/src/app/pt/perguntas/[slug]/page.tsx @@ -18,8 +18,12 @@ export default async function FaqArticlePage({ params }: Params) {

{String(frontmatter.title ?? "FAQ")}

- {frontmatter.readTime && Tempo de leitura: {String(frontmatter.readTime)}} - {frontmatter.intendedFor && • Público: {String(frontmatter.intendedFor)}} + {frontmatter.readTime ? ( + Tempo de leitura: {String(frontmatter.readTime)} + ) : null} + {frontmatter.intendedFor ? ( + • Público: {String(frontmatter.intendedFor)} + ) : null}

{content}