Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/routes/community/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@
let { data } = $props();

const projects: ProjectCardProps[] = [
{
title: 'Refetch.io',
description: 'Open-source alternative to Hacker News.',
image: {
src: 'https://cloud.appwrite.io/v1/storage/buckets/thumbnails/files/68b984b5000e9ce4e9e6/preview?width=1280&output=webp&project=builtWithAppwrite',
alt: 'Refetch: Open-source alternative to Hacker News'
},
href: 'https://builtwith.appwrite.io/projects/68b69752de6ca9dd5313/'
},
{
title: 'Auth UI',
description: 'Appwrite-powered authentication screens generator for any application.',
Expand Down
4 changes: 2 additions & 2 deletions src/routes/community/ProjectCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</script>

<a
class="web-card is-white web-flex flex-col gap-2"
class="web-card is-white web-flex h-full flex-col gap-2"
style="--card-padding: 0.5rem;"
{href}
target="_blank"
Expand All @@ -35,7 +35,7 @@
{description}
</p>
</div>
<div class="img-wrapper">
<div class="img-wrapper mt-auto">
<img src={image.src} alt={image.alt} />
</div>
</a>
Expand Down