feat: change link color

This commit is contained in:
2023-08-02 16:05:05 +02:00
parent ba853342bd
commit 21871a72e6
3 changed files with 5 additions and 4 deletions

View File

@ -33,7 +33,7 @@ export default function Greet(props: PageProps<Article[] | null>) {
{props.data?.map((doc) => {
return (
<Card
image={"/placeholder.svg"}
image={doc?.meta?.image||"/placeholder.svg"}
link={`/articles/${doc.id}`}
title={doc.name}
/>