Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Builder perks #1172

Merged
merged 8 commits into from
Mar 14, 2025
Merged
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
460 changes: 460 additions & 0 deletions docs/ecosystem/builder-perks.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions src/components/Icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@ export const Icon: React.FC<IconProps> = ({
return <LocationIcon />;
}

if (typeof icons[name] === 'string') {
return (
<div className={className}>
<img
src={icons[name]}
alt={name}
className="w-full h-full object-contain"
width={width}
height={height}
/>
</div>
);
}

// Otherwise, render as a React component
return (
<div className={className}>
{React.createElement(icons[name], {
Expand Down
5 changes: 5 additions & 0 deletions src/hooks/use-icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,10 @@ export function useIcons() {
'vrf---cadence': VRFCadenceIcon,
'vrf---evm': VRFEVMIcon,
'why-flow': WhyFlowIcon,
'quicknode': '/img/ecosystem/quicknode.svg',
'olympix-logo': '/img/ecosystem/olympix-logo.svg',
'flow': '/img/ecosystem/flow.svg',
'alchemy': '/img/ecosystem/alchemy.svg',
'thirdweb': '/img/ecosystem/thirdweb.svg',
}), []);
}
6 changes: 6 additions & 0 deletions static/img/ecosystem/alchemy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/img/ecosystem/flow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/img/ecosystem/olympix-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/img/ecosystem/quicknode.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions static/img/ecosystem/thirdweb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.