Skip to content

Commit f545ff8

Browse files
committed
feat: support remote URLs for collaborator logos and render section on homepage
1 parent aa2ee59 commit f545ff8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

collaborators.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Each entry needs:
44
# name: Display name
55
# url: Link target (homepage, GitHub org, etc.)
6-
# logo: Path under site/public/ (e.g. /collaborators/acme.svg)
6+
# logo: Remote URL to the logo image (e.g. https://example.com/logo.svg)
77
# tagline: Optional one-line description
88
#
99
# Add an entry below to feature a collaborator on the homepage.
@@ -13,5 +13,5 @@ collaborators: []
1313
# collaborators:
1414
# - name: Acme Inc
1515
# url: https://acme.com
16-
# logo: /collaborators/acme.png
16+
# logo: https://acme.com/logo.png
1717
# tagline: AI-powered widgets

site/src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const totalPluginCount = plugins.length;
106106
</div>
107107

108108
<Cta />
109-
<!-- <Collaborators /> -->
109+
<Collaborators />
110110
</div>
111111

112112
<Footer />

0 commit comments

Comments
 (0)