Skip to content

Commit e4b4f61

Browse files
committed
feat(testimonials): add new testimonial from Ideas Per Second
1 parent a8f3057 commit e4b4f61

2 files changed

Lines changed: 24 additions & 17 deletions

File tree

8.97 KB
Loading

src/data/testimonials.ts

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export interface Testimonial {
22
text: string;
3-
3+
44
// author
55
avatar: string;
66
name: string;
77
authorLink: string;
8-
8+
99
// game
1010
game?: string;
1111
gameLink?: string;
@@ -14,24 +14,31 @@ export interface Testimonial {
1414
export const testimonials: Testimonial[] = [
1515
{
1616
text: `Pipelab has made it super easy to quickly iterate and spread builds of DeadWire to the rest of the team. After setting it up the one click electron export and upload to steam can't be beaten.`,
17-
avatar: '/testimonials/shotgun_anaconda.jpg',
18-
name: 'Shotgun Anaconda',
19-
authorLink: 'https://x.com/shotgunanaconda',
20-
game: 'DeadWire',
21-
gameLink: 'https://store.steampowered.com/app/2995100/DeadWire/'
17+
avatar: "/testimonials/shotgun_anaconda.jpg",
18+
name: "Shotgun Anaconda",
19+
authorLink: "https://x.com/shotgunanaconda",
20+
game: "DeadWire",
21+
gameLink: "https://store.steampowered.com/app/2995100/DeadWire/",
2222
},
2323
{
2424
text: `Pipelab is an exceptional tool for indie developers, offering a rich set of features that streamline game development workflows. It's especially invaluable for games made with Construct 3, providing the most efficient and reliable solution for exporting games to Steam. The level of support is outstanding—responsive, helpful, and genuinely invested in your success.`,
25-
avatar: '/testimonials/overboy.png',
26-
name: 'overboy',
27-
authorLink: 'https://x.com/OverboyYT',
28-
game: 'Noobs Are Coming',
29-
gameLink: 'https://store.steampowered.com/app/2225960/Noobs_Are_Coming/'
25+
avatar: "/testimonials/overboy.png",
26+
name: "overboy",
27+
authorLink: "https://x.com/OverboyYT",
28+
game: "Noobs Are Coming",
29+
gameLink: "https://store.steampowered.com/app/2225960/Noobs_Are_Coming/",
3030
},
3131
{
3232
text: `Pipelab is amazing. If you're a serious game developer, it has everything you need to automate your deploying process into multiple platforms, and it's all seamless.`,
33-
avatar: '/testimonials/asteristic_game_studio.jpg',
34-
name: 'Asteristic Game Studio',
35-
authorLink: 'https://asteristic.com/'
36-
}
37-
];
33+
avatar: "/testimonials/asteristic_game_studio.jpg",
34+
name: "Asteristic Game Studio",
35+
authorLink: "https://asteristic.com/",
36+
},
37+
{
38+
text: `We have used Pipelab on a variety of projects and it continues to exceed our expectations! Pipelab is an invaluable automation tool that eliminates the errors of a manual build process by building packages based on clearly defined rules. If you need a consistent way to support a large number of games across different platforms, Pipelab is by far the best solution available.`,
39+
avatar: "/testimonials/ideaspersecond.jpg",
40+
name: "Ideas Per Second",
41+
authorLink: "https://www.ideaspersecond.com/",
42+
gameLink: "https://store.steampowered.com/app/4241690/Hydra_Heli_2",
43+
},
44+
];

0 commit comments

Comments
 (0)