Skip to content

Commit de32b85

Browse files
committed
feat: add Bluesky link support to community card component
1 parent 6bcd920 commit de32b85

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/app/components/cards/community-card.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,22 @@ import { Community } from '../../../models/community.model';
8686
</a>
8787
</li>
8888
}
89+
@if (community().blueskyUrl) {
90+
<li>
91+
<a
92+
[href]="community().blueskyUrl"
93+
target="_blank"
94+
class="text-sm hover:underline flex items-center gap-2"
95+
>
96+
<img
97+
src="/assets/icons/bluesky-icon.svg"
98+
class="w-4 h-4"
99+
alt=""
100+
/>
101+
<span>Bluesky</span>
102+
</a>
103+
</li>
104+
}
89105
@if (community().youtubeUrl) {
90106
<li>
91107
<a

0 commit comments

Comments
 (0)