feat(web): add amazon platform to playground catalog

This commit is contained in:
Anish Sarkar 2026-07-15 01:57:57 +05:30
parent e8010065f2
commit 16404cb9d0
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import type { ComponentType } from "react";
import {
AmazonIcon,
GoogleMapsIcon,
GoogleSearchIcon,
InstagramIcon,
@ -89,6 +90,12 @@ export const PLAYGROUND_PLATFORMS: PlaygroundPlatform[] = [
icon: GoogleSearchIcon,
verbs: [{ name: "google_search.scrape", verb: "scrape", label: "Scrape" }],
},
{
id: "amazon",
label: "Amazon",
icon: AmazonIcon,
verbs: [{ name: "amazon.scrape", verb: "scrape", label: "Scrape" }],
},
{
id: "web",
label: "Web",

View file

@ -22,6 +22,7 @@ function brandIcon(src: string, alt: string) {
};
}
export const AmazonIcon = brandIcon("/connectors/amazon.svg", "Amazon");
export const RedditIcon = brandIcon("/connectors/reddit.svg", "Reddit");
export const YouTubeIcon = brandIcon("/connectors/youtube.svg", "YouTube");
export const InstagramIcon = brandIcon("/connectors/instagram.svg", "Instagram");