import type React from "react" // Added import for React interface DashboardHeaderProps { heading: string text?: string children?: React.ReactNode } export function DashboardHeader({ heading, text, children }: DashboardHeaderProps) { return (

{heading}

{text &&

{text}

}

Gerencie seus certificados digitais, acompanhe vendas e monitore o desempenho em tempo real. Todas as ferramentas que você precisa em um só lugar.

{children}
) }