We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86efda commit 2530cdbCopy full SHA for 2530cdb
gallery/src/App.tsx
@@ -59,7 +59,7 @@ function App() {
59
filteredList.map(item => {
60
return <div className='m-4 n-bg-neutral-10 n-shadow-l4'>
61
<div className="">
62
- <h4 className="p-3 float-right opacity-50">{item['language']}</h4>
+ <h4 className="p-3 float-right">{item['language']}{item['logo'] ? <a target="_blank" href={item['authorURL']}><img style={{width: 30}} src={item['logo']}></img></a> : <></>}</h4>
63
<h4 className="p-3">{item['title']}</h4>
64
<p className="p-3">
65
{item['description']}
0 commit comments