File tree 4 files changed +28
-0
lines changed
4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ const goldSponsors = [
44
44
] ;
45
45
const silverSponsors = [
46
46
allSponsors . smartly ,
47
+ allSponsors . wunderdog ,
47
48
// allSponsors.evitec,
48
49
// allSponsors.upcloud,
49
50
// allSponsors.gofore,
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ export { default as vincit } from "./vincit";
98
98
export { default as webexpo } from "./webexpo" ;
99
99
export { default as wonna } from "./wonna" ;
100
100
export { default as wunder } from "./wunder" ;
101
+ export { default as wunderdog } from "./wunderdog" ;
101
102
export { default as yglfkyiv } from "./yglfkyiv" ;
102
103
export { default as yle } from "./yle" ;
103
104
export { default as zapier } from "./zapier" ;
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 : "Wunderdog" ,
5
+ about : "Future-proof design and development" ,
6
+ image : {
7
+ url : "sponsors/wunderdog.svg" ,
8
+ } ,
9
+ social : {
10
+ homepage : "https://www.wunderdog.io/" ,
11
+ facebook : "" ,
12
+ instagram : "" ,
13
+ twitter : "" ,
14
+ } ,
15
+ location : {
16
+ country : {
17
+ name : "Finland" ,
18
+ code : "FI" ,
19
+ } ,
20
+ city : "Helsinki" ,
21
+ } ,
22
+ type : [ ContactType . SPONSOR ] ,
23
+ } ;
24
+
25
+ export default sponsor ;
You can’t perform that action at this time.
0 commit comments