Skip to content

Commit bd77993

Browse files
authored
fix(landing): Update integration list (windmill-labs#147)
1 parent 2da661c commit bd77993

File tree

1 file changed

+14
-29
lines changed

1 file changed

+14
-29
lines changed

src/landing/IntergrationList.jsx

Lines changed: 14 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -3,53 +3,38 @@ import LandingSection from './LandingSection';
33
import { ExternalLink } from 'lucide-react';
44

55
const integrations = [
6-
{
7-
name: 'Airtable',
8-
src: 'third_party_logos/airtable.svg',
9-
url: 'https://hub.windmill.dev/integrations/airtable'
10-
},
11-
{
12-
name: 'Clickhouse',
13-
src: 'third_party_logos/clickhouse.svg',
14-
url: 'https://hub.windmill.dev/integrations/clickhouse'
15-
},
16-
{
17-
name: 'Faunadb',
18-
src: 'third_party_logos/faunadb.svg',
19-
url: 'https://hub.windmill.dev/integrations/faunadb'
20-
},
6+
{ name: 'Airtable', src: 'third_party_logos/airtable.svg' },
7+
{ name: 'ClickHouse', src: 'third_party_logos/clickhouse.svg' },
8+
{ name: 'FaunaDB', src: 'third_party_logos/faunadb.svg' },
219
{ name: 'Gdrive', src: 'third_party_logos/gdrive.svg' },
2210
{ name: 'Gmail', src: 'third_party_logos/gmail.svg' },
23-
{ name: 'Linkding', src: 'third_party_logos/linkding.svg' },
2411
{ name: 'Mastodon', src: 'third_party_logos/mastodon.svg' },
25-
{ name: 'Mysql', src: 'third_party_logos/mysql.svg' },
26-
{ name: 'Postgres', src: 'third_party_logos/postgres.svg' },
12+
{ name: 'MySQL', src: 'third_party_logos/mysql.svg' },
13+
{ name: 'PostgreSQL', src: 'third_party_logos/postgres.svg' },
2714
{ name: 'Slack', src: 'third_party_logos/slack.svg' },
28-
2915
{ name: 'Appwrite', src: 'third_party_logos/appwrite.svg' },
3016
{ name: 'Datadog', src: 'third_party_logos/datadog.svg' },
3117
{ name: 'Funkwhale', src: 'third_party_logos/funkwhale.svg' },
32-
{ name: 'Github', src: 'third_party_logos/github.svg' },
18+
{ name: 'GitHub', src: 'third_party_logos/github.svg' },
3319
{ name: 'Gsheets', src: 'third_party_logos/gsheets.svg' },
34-
{ name: 'Hubspot', src: 'third_party_logos/hubspot.svg' },
20+
{ name: 'HubSpot', src: 'third_party_logos/hubspot.svg' },
3521
{ name: 'Mailchimp', src: 'third_party_logos/mailchimp.svg' },
36-
{ name: 'Openai', src: 'third_party_logos/openai.svg' },
22+
{ name: 'OpenAI', src: 'third_party_logos/openai.svg' },
3723
{ name: 'Sendgrid', src: 'third_party_logos/sendgrid.svg' },
3824
{ name: 'Supabase', src: 'third_party_logos/supabase.svg' },
39-
40-
{ name: 'Aws', src: 'third_party_logos/aws.svg' },
25+
{ name: 'AWS', src: 'third_party_logos/aws.svg' },
4126
{ name: 'Discord', src: 'third_party_logos/discord.svg' },
4227
{ name: 'Gcal', src: 'third_party_logos/gcal.svg' },
43-
{ name: 'Gitlab', src: 'third_party_logos/gitlab.svg' },
44-
{ name: 'Linkedin', src: 'third_party_logos/linkedin.svg' },
28+
{ name: 'GitLab', src: 'third_party_logos/gitlab.svg' },
29+
{ name: 'LinkedIn', src: 'third_party_logos/linkedin.svg' },
4530
{ name: 'Matrix', src: 'third_party_logos/matrix.svg' },
4631
{ name: 'Nextcloud', src: 'third_party_logos/nextcloud.svg' },
4732
{ name: 'S3', src: 'third_party_logos/s3.svg' },
4833
{ name: 'Stripe', src: 'third_party_logos/stripe.svg' },
49-
{ name: 'Mongo DB', src: 'third_party_logos/mongodb.svg' },
50-
{ name: 'Surreal DB', src: 'third_party_logos/surrealdb.svg' },
34+
{ name: 'MongoDB', src: 'third_party_logos/mongodb.svg' },
35+
{ name: 'SurrealDB', src: 'third_party_logos/surrealdb.svg' },
5136
{ name: 'Telegram', src: 'third_party_logos/telegram.svg' },
52-
{ name: 'toggl', src: 'third_party_logos/toggl.svg' }
37+
{ name: 'Toggl', src: 'third_party_logos/toggl.svg' }
5338
];
5439

5540
export default function IntergrationList() {

0 commit comments

Comments
 (0)