2026-07-15 10:15:48 +05:30
|
|
|
import { amazon } from "./amazon";
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
import { googleMaps } from "./google-maps";
|
|
|
|
|
import { googleSearch } from "./google-search";
|
2026-07-15 19:03:51 +02:00
|
|
|
import { indeed } from "./indeed";
|
2026-07-09 16:07:19 +05:30
|
|
|
import { instagram } from "./instagram";
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
import { reddit } from "./reddit";
|
2026-07-08 20:36:46 +02:00
|
|
|
import { tiktok } from "./tiktok";
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
import type { ConnectorPageContent } from "./types";
|
2026-07-19 09:01:11 +02:00
|
|
|
import { walmart } from "./walmart";
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
import { webCrawl } from "./web-crawl";
|
|
|
|
|
import { youtube } from "./youtube";
|
|
|
|
|
|
|
|
|
|
export type { ConnectorPageContent } from "./types";
|
|
|
|
|
|
|
|
|
|
/** Registry order controls sitemap and cross-link ordering. */
|
|
|
|
|
const CONNECTOR_LIST: ConnectorPageContent[] = [
|
|
|
|
|
reddit,
|
|
|
|
|
youtube,
|
2026-07-09 16:07:19 +05:30
|
|
|
instagram,
|
2026-07-08 20:36:46 +02:00
|
|
|
tiktok,
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
googleMaps,
|
|
|
|
|
googleSearch,
|
2026-07-15 19:03:51 +02:00
|
|
|
indeed,
|
2026-07-15 10:15:48 +05:30
|
|
|
amazon,
|
2026-07-19 09:01:11 +02:00
|
|
|
walmart,
|
feat(marketing): CI-first homepage, connector API pages, and hero chat demo
- Homepage rebuilt around competitive-intelligence positioning: connector grid,
how-it-works, use-case art, compare table, FAQ, and a scripted new-chat hero
demo (typewriter prompt, agent timeline, streamed answer, /login on send)
- Marketing pages for the Reddit/YouTube/Maps/SERP/Web Crawl scrape APIs at
/<slug>, a /connectors hub, and a bespoke /mcp-connector page
- Remove stale app/dashboard/[search_space_id] tree that broke the build
(canonical route is [workspace_id])
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 20:28:27 -07:00
|
|
|
webCrawl,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const CONNECTORS_BY_SLUG: Record<string, ConnectorPageContent> = Object.fromEntries(
|
|
|
|
|
CONNECTOR_LIST.map((c) => [c.slug, c])
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export function getConnector(slug: string): ConnectorPageContent | undefined {
|
|
|
|
|
return CONNECTORS_BY_SLUG[slug];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getAllConnectors(): ConnectorPageContent[] {
|
|
|
|
|
return CONNECTOR_LIST;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getAllConnectorSlugs(): string[] {
|
|
|
|
|
return CONNECTOR_LIST.map((c) => c.slug);
|
|
|
|
|
}
|