Skip to content

Commit

Permalink
Added Struyf Consulting as sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Dec 19, 2024
1 parent 07904e7 commit b703f46
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Page/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P

{
sponsors && sponsors.companies && sponsors.companies.length > 0 && (
<div className="flex justify-center space-x-8 flex-wrap">
<div className="flex justify-center items-center space-x-8 flex-wrap">
{
sponsors.companies.map((sponsor) => (
<a
Expand All @@ -75,7 +75,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
href={sponsor.url}
title={sponsor.title}
className="mt-6 col-span-1 flex justify-center">
<img className="h-12" src={sponsor.image} alt={sponsor.alt} />
<img className={sponsor.id === "Struyf-Consulting" ? "h-[25px]" : "h-12"} src={sponsor.image} alt={sponsor.alt} />
</a>
))
}
Expand Down
1 change: 1 addition & 0 deletions content/changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [#705](https://github.com/estruyf/vscode-front-matter/issues/705): UX improvements for the panel view
- [#887](https://github.com/estruyf/vscode-front-matter/issues/887): Added new `frontMatter.global.timezone` setting, by default it is set to `UTC` for date formatting
- [#888](https://github.com/estruyf/vscode-front-matter/issues/888): Added the ability to prompt GitHub Copilot from a custom script/action
- [#892](https://github.com/estruyf/vscode-front-matter/issues/892): Added media folder common actions

### 🐞 Fixes

Expand Down
Binary file added public/struyf-consulting.webp
Binary file not shown.
9 changes: 8 additions & 1 deletion sponsors.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,15 @@
"url": "http://bejs.io",
"title": "Supported by the BEJS Community",
"image": "/assets/sponsors/bejs-community.png",
"id": "BEJS Community",
"id": "BEJS-Community",
"alt": "BEJS Community"
},
{
"url": "http://struyfconsulting.com",
"title": "Hire Elio Struyf via Struyf Consulting",
"image": "/struyf-consulting.webp",
"id": "Struyf-Consulting",
"alt": "Struyf Consulting"
}
]
}

0 comments on commit b703f46

Please sign in to comment.