feat: use animated emojis from fluent
This commit is contained in:
@ -19,8 +19,13 @@ export default function Home(props: PageProps) {
|
||||
{Object.values(resources).map((m) => {
|
||||
return (
|
||||
<Card
|
||||
title={`${m.emoji} ${m.name}`}
|
||||
image="/placeholder.svg"
|
||||
title={`${m.name}`}
|
||||
backgroundSize={80}
|
||||
image={`${
|
||||
m.emoji.endsWith(".png")
|
||||
? `/emojis/${encodeURIComponent(m.emoji)}`
|
||||
: "/placeholder.svg"
|
||||
}`}
|
||||
link={m.link}
|
||||
/>
|
||||
);
|
||||
|
Reference in New Issue
Block a user