Skip to content

Commit 9c21c2d

Browse files
committed
chore: Add a partner
1 parent e0028d7 commit 9c21c2d

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

content/future-frontend-2025/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const partners = [
3636
// allSponsors.yle,
3737
// allSponsors.nitor,
3838
// allSponsors.vihat,
39+
allSponsors.twir,
3940
];
4041
const goldSponsors = [
4142
// allSponsors.digia

content/sponsors/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export { default as survivejs } from "./survivejs";
8686
export { default as techEvents } from "./tech-events";
8787
export { default as toddle } from "./toddle";
8888
export { default as toska } from "./toska";
89+
export { default as twir } from "./twir";
8990
export { default as typeof } from "./typeof";
9091
export { default as upcloud } from "./upcloud";
9192
export { default as utopia } from "./utopia";

content/sponsors/twir.ts

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { Contact, ContactType } from "../../server/schema/Contact";
2+
3+
const sponsor: Contact = {
4+
name: "This Week in React",
5+
about: "The latest news directly in your inbox!",
6+
image: {
7+
url: "sponsors/twir.png",
8+
},
9+
social: {
10+
homepage: "https://thisweekinreact.com?utm_source=ff",
11+
twitter: "sebastienlorber",
12+
},
13+
location: {
14+
country: {
15+
name: "France",
16+
code: "FR",
17+
},
18+
city: "Paris",
19+
},
20+
type: [ContactType.SPONSOR],
21+
};
22+
23+
export default sponsor;

media/sponsors/twir.png

208 KB
Loading

0 commit comments

Comments
 (0)