Skip to content

Commit 66a0914

Browse files
committed
Website url
1 parent f61ecc8 commit 66a0914

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

frontend/src/components/blocks/communities-section.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ export const CommunitiesSection = ({ title, communities }: Props) => {
5454
link: community.twitterUrl,
5555
});
5656
}
57+
if (community.websiteUrl) {
58+
socialLinks.push({
59+
icon: "website",
60+
link: community.websiteUrl,
61+
});
62+
}
5763

5864
return (
5965
<MultiplePartsCard key={community.name}>

frontend/src/pages/schedule/fragments/blocks.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ fragment Blocks on Block {
150150
instagramUrl
151151
linkedinUrl
152152
twitterUrl
153+
websiteUrl
153154
}
154155
}
155156
}

0 commit comments

Comments
 (0)