Skip to content

Commit 6114e2e

Browse files
Add refetch.io to community projects
1 parent fd9bfcc commit 6114e2e

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/routes/community/+page.svelte

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@
6363
let { data } = $props();
6464
6565
const projects: ProjectCardProps[] = [
66+
{
67+
title: 'Refetch.io',
68+
description: 'Open-source alternative to Hacker News.',
69+
image: {
70+
src: 'https://cloud.appwrite.io/v1/storage/buckets/thumbnails/files/68b984b5000e9ce4e9e6/preview?width=1280&output=webp&project=builtWithAppwrite',
71+
alt: 'Refetch: Open-source alternative to Hacker News'
72+
},
73+
href: 'https://builtwith.appwrite.io/projects/68b69752de6ca9dd5313/'
74+
},
6675
{
6776
title: 'Auth UI',
6877
description: 'Appwrite-powered authentication screens generator for any application.',

src/routes/community/ProjectCard.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</script>
2323

2424
<a
25-
class="web-card is-white web-flex flex-col gap-2"
25+
class="web-card is-white web-flex h-full flex-col gap-2"
2626
style="--card-padding: 0.5rem;"
2727
{href}
2828
target="_blank"
@@ -35,7 +35,7 @@
3535
{description}
3636
</p>
3737
</div>
38-
<div class="img-wrapper">
38+
<div class="img-wrapper mt-auto">
3939
<img src={image.src} alt={image.alt} />
4040
</div>
4141
</a>

0 commit comments

Comments
 (0)