Cleanup apps a bit

This commit is contained in:
Jonathan Staab 2023-06-10 11:01:05 -07:00
parent c61e662786
commit 6b293b33a2

View File

@ -6,11 +6,7 @@
const apps = [ const apps = [
["https://zapstr.live", "Zapstr", "Stream music, zap artists"], ["https://zapstr.live", "Zapstr", "Stream music, zap artists"],
[ ["https://highlighter.com", "Highlighter", "Highlight anything and share it with friends."],
"https://highlighter.com",
"Highlighter",
"Highlight anything on the web - add notes and share with friends.",
],
["https://www.wavman.app", "Wavman", "A nostalgic music player built on nostr."], ["https://www.wavman.app", "Wavman", "A nostalgic music player built on nostr."],
["https://feeds.nostr.band", "Feeds", "Find custom curated feeds - and create your own."], ["https://feeds.nostr.band", "Feeds", "Find custom curated feeds - and create your own."],
["https://blowater.deno.dev", "Blowater", "The best nostr micro-client for managing DMs."], ["https://blowater.deno.dev", "Blowater", "The best nostr micro-client for managing DMs."],
@ -35,11 +31,11 @@
<Heading>Recommended micro-apps</Heading> <Heading>Recommended micro-apps</Heading>
<p>Hand-picked recommendations to enhance your nostr experience.</p> <p>Hand-picked recommendations to enhance your nostr experience.</p>
</div> </div>
<div class="grid grid-cols-1 gap-4 md:grid-cols-2"> <div class="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3">
{#each apps as [url, title, description]} {#each apps as [url, title, description]}
<Card class="flex flex-col gap-2"> <Card class="flex flex-col gap-2">
<h1 class="text-2xl">{title}</h1> <h1 class="text-2xl">{title}</h1>
<p>{description}</p> <p class="h-16">{description}</p>
<Media link={{url}} /> <Media link={{url}} />
</Card> </Card>
{/each} {/each}