File tree 4 files changed +25
-0
lines changed
4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ const partners = [
36
36
// allSponsors.yle,
37
37
// allSponsors.nitor,
38
38
// allSponsors.vihat,
39
+ allSponsors . twir ,
39
40
] ;
40
41
const goldSponsors = [
41
42
// allSponsors.digia
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export { default as survivejs } from "./survivejs";
86
86
export { default as techEvents } from "./tech-events" ;
87
87
export { default as toddle } from "./toddle" ;
88
88
export { default as toska } from "./toska" ;
89
+ export { default as twir } from "./twir" ;
89
90
export { default as typeof } from "./typeof" ;
90
91
export { default as upcloud } from "./upcloud" ;
91
92
export { default as utopia } from "./utopia" ;
Original file line number Diff line number Diff line change
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 ;
You can’t perform that action at this time.
0 commit comments