feat(web): add Instagram playground platform and brand icon

This commit is contained in:
Anish Sarkar 2026-07-09 16:03:34 +05:30
parent 7309ca5ca0
commit d00030d97c
3 changed files with 13 additions and 0 deletions

View file

@ -2,6 +2,7 @@ import type { ComponentType } from "react";
import {
GoogleMapsIcon,
GoogleSearchIcon,
InstagramIcon,
RedditIcon,
WebIcon,
YouTubeIcon,
@ -48,6 +49,16 @@ export const PLAYGROUND_PLATFORMS: PlaygroundPlatform[] = [
{ name: "youtube.comments", verb: "comments", label: "Comments" },
],
},
{
id: "instagram",
label: "Instagram",
icon: InstagramIcon,
verbs: [
{ name: "instagram.scrape", verb: "scrape", label: "Scrape" },
{ name: "instagram.comments", verb: "comments", label: "Comments" },
{ name: "instagram.details", verb: "details", label: "Details" },
],
},
{
id: "google_maps",
label: "Google Maps",

View file

@ -24,6 +24,7 @@ function brandIcon(src: string, alt: string) {
export const RedditIcon = brandIcon("/connectors/reddit.svg", "Reddit");
export const YouTubeIcon = brandIcon("/connectors/youtube.svg", "YouTube");
export const InstagramIcon = brandIcon("/connectors/instagram.svg", "Instagram");
export const GoogleMapsIcon = brandIcon("/connectors/google-maps.svg", "Google Maps");
export const GoogleSearchIcon = brandIcon("/connectors/google-search.svg", "Google Search");
export const WebIcon = brandIcon("/connectors/web.svg", "Web");