fix: satisfy nextra card type requirements (title + children)

This commit is contained in:
dyzulk
2026-01-08 15:13:03 +07:00
parent 19bc1b0651
commit cdd98d17b1

View File

@@ -64,7 +64,9 @@ export function CertificateDownload() {
icon={getIcon('root')} icon={getIcon('root')}
title={cert.name} title={cert.name}
href={getDownloadLink(cert) || '#'} href={getDownloadLink(cert) || '#'}
/> >
{null}
</Card>
))} ))}
</Cards> </Cards>
</div> </div>
@@ -78,7 +80,9 @@ export function CertificateDownload() {
icon={getIcon('intermediate')} icon={getIcon('intermediate')}
title={cert.name} title={cert.name}
href={getDownloadLink(cert) || '#'} href={getDownloadLink(cert) || '#'}
/> >
{null}
</Card>
))} ))}
</Cards> </Cards>
</div> </div>