diff --git a/ts/react/free2z/src/components/PageListRow2.tsx b/ts/react/free2z/src/components/PageListRow2.tsx index a67a18829bc..082bca65aba 100644 --- a/ts/react/free2z/src/components/PageListRow2.tsx +++ b/ts/react/free2z/src/components/PageListRow2.tsx @@ -323,9 +323,9 @@ export default function PageListRow(page: PageListRowProps) { height: 0, paddingTop: '56.25%', // 16:9 marginRight: "0.5em", - opacity: page.featured_image ? 1 : 0.1, + opacity: page.featured_image ? 1 : 0.25, }} - image={page.featured_image?.thumbnail || "/2z-ai.png"} + image={page.featured_image?.thumbnail || "/docs/img/tuzi.svg"} title={page.title} /> {/* */} diff --git a/ts/react/free2z/src/components/StoryRow.tsx b/ts/react/free2z/src/components/StoryRow.tsx index 879645964dd..364cd495a3e 100644 --- a/ts/react/free2z/src/components/StoryRow.tsx +++ b/ts/react/free2z/src/components/StoryRow.tsx @@ -160,9 +160,9 @@ export default function StoryRow(props: Props) { height: 0, paddingTop: '56.25%', // 16:9 marginRight: "0.5em", - opacity: getFirstNonEmptyPageImage(story) ? 1 : 0.1, + opacity: getFirstNonEmptyPageImage(story) ? 1 : 0.25, }} - image={getFirstNonEmptyPageImage(story) || "/2z-ai.png"} + image={getFirstNonEmptyPageImage(story) || "/docs/img/tuzi.svg"} title={story.title} />