Skip to content

Commit b703f46

Browse files
committed
Added Struyf Consulting as sponsor
1 parent 07904e7 commit b703f46

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

components/Page/Sponsors.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
6565

6666
{
6767
sponsors && sponsors.companies && sponsors.companies.length > 0 && (
68-
<div className="flex justify-center space-x-8 flex-wrap">
68+
<div className="flex justify-center items-center space-x-8 flex-wrap">
6969
{
7070
sponsors.companies.map((sponsor) => (
7171
<a
@@ -75,7 +75,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
7575
href={sponsor.url}
7676
title={sponsor.title}
7777
className="mt-6 col-span-1 flex justify-center">
78-
<img className="h-12" src={sponsor.image} alt={sponsor.alt} />
78+
<img className={sponsor.id === "Struyf-Consulting" ? "h-[25px]" : "h-12"} src={sponsor.image} alt={sponsor.alt} />
7979
</a>
8080
))
8181
}

content/changelog/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- [#705](https://github.com/estruyf/vscode-front-matter/issues/705): UX improvements for the panel view
99
- [#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
1010
- [#888](https://github.com/estruyf/vscode-front-matter/issues/888): Added the ability to prompt GitHub Copilot from a custom script/action
11+
- [#892](https://github.com/estruyf/vscode-front-matter/issues/892): Added media folder common actions
1112

1213
### 🐞 Fixes
1314

public/struyf-consulting.webp

16.3 KB
Binary file not shown.

sponsors.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,15 @@
3838
"url": "http://bejs.io",
3939
"title": "Supported by the BEJS Community",
4040
"image": "/assets/sponsors/bejs-community.png",
41-
"id": "BEJS Community",
41+
"id": "BEJS-Community",
4242
"alt": "BEJS Community"
43+
},
44+
{
45+
"url": "http://struyfconsulting.com",
46+
"title": "Hire Elio Struyf via Struyf Consulting",
47+
"image": "/struyf-consulting.webp",
48+
"id": "Struyf-Consulting",
49+
"alt": "Struyf Consulting"
4350
}
4451
]
4552
}

0 commit comments

Comments
 (0)