@agent-relay/dashboard 2.0.80 → 2.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/out/404.html +1 -1
  2. package/out/_next/static/chunks/{118-4c8241b0218335de.js → 118-ae2b650136a5a5fc.js} +1 -1
  3. package/out/_next/static/chunks/407-0c82986cf79c8ecb.js +1 -0
  4. package/out/_next/static/chunks/app/app/[[...slug]]/{page-1e81c047cff17212.js → page-f7eca1b66fb4249b.js} +1 -1
  5. package/out/_next/static/chunks/app/{page-6892fe2dd07fb48b.js → page-0ee604f7070d14c0.js} +1 -1
  6. package/out/_next/static/css/8968d98ed4c4d33f.css +1 -0
  7. package/out/about.html +2 -2
  8. package/out/about.txt +1 -1
  9. package/out/app/onboarding.html +1 -1
  10. package/out/app/onboarding.txt +1 -1
  11. package/out/app.html +1 -1
  12. package/out/app.txt +2 -2
  13. package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +2 -2
  14. package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
  15. package/out/blog/let-them-cook-multi-agent-orchestration.html +2 -2
  16. package/out/blog/let-them-cook-multi-agent-orchestration.txt +2 -2
  17. package/out/blog.html +2 -2
  18. package/out/blog.txt +1 -1
  19. package/out/careers.html +2 -2
  20. package/out/careers.txt +1 -1
  21. package/out/changelog.html +2 -2
  22. package/out/changelog.txt +1 -1
  23. package/out/cloud/link.html +1 -1
  24. package/out/cloud/link.txt +2 -2
  25. package/out/complete-profile.html +2 -2
  26. package/out/complete-profile.txt +1 -1
  27. package/out/connect-repos.html +1 -1
  28. package/out/connect-repos.txt +1 -1
  29. package/out/contact.html +2 -2
  30. package/out/contact.txt +1 -1
  31. package/out/docs.html +2 -2
  32. package/out/docs.txt +1 -1
  33. package/out/history.html +1 -1
  34. package/out/history.txt +2 -2
  35. package/out/index.html +1 -1
  36. package/out/index.txt +2 -2
  37. package/out/login.html +2 -2
  38. package/out/login.txt +1 -1
  39. package/out/metrics.html +1 -1
  40. package/out/metrics.txt +2 -2
  41. package/out/pricing.html +2 -2
  42. package/out/pricing.txt +1 -1
  43. package/out/privacy.html +2 -2
  44. package/out/privacy.txt +1 -1
  45. package/out/providers/setup/claude.html +1 -1
  46. package/out/providers/setup/claude.txt +1 -1
  47. package/out/providers/setup/codex.html +1 -1
  48. package/out/providers/setup/codex.txt +1 -1
  49. package/out/providers/setup/cursor.html +1 -1
  50. package/out/providers/setup/cursor.txt +1 -1
  51. package/out/providers.html +1 -1
  52. package/out/providers.txt +1 -1
  53. package/out/security.html +2 -2
  54. package/out/security.txt +1 -1
  55. package/out/signup.html +2 -2
  56. package/out/signup.txt +1 -1
  57. package/out/terms.html +2 -2
  58. package/out/terms.txt +1 -1
  59. package/package.json +7 -1
  60. package/src/app/about/page.tsx +7 -0
  61. package/src/app/app/[[...slug]]/DashboardPageClient.tsx +853 -0
  62. package/src/app/app/[[...slug]]/page.tsx +23 -0
  63. package/src/app/app/onboarding/page.tsx +394 -0
  64. package/src/app/apple-icon.png +0 -0
  65. package/src/app/blog/go-to-bed-wake-up-to-a-finished-product/page.tsx +88 -0
  66. package/src/app/blog/let-them-cook-multi-agent-orchestration/page.tsx +93 -0
  67. package/src/app/blog/page.tsx +15 -0
  68. package/src/app/careers/page.tsx +7 -0
  69. package/src/app/changelog/page.tsx +7 -0
  70. package/src/app/cloud/link/page.tsx +464 -0
  71. package/src/app/complete-profile/page.tsx +204 -0
  72. package/src/app/connect-repos/page.tsx +410 -0
  73. package/src/app/contact/page.tsx +7 -0
  74. package/src/app/docs/page.tsx +7 -0
  75. package/src/app/favicon.png +0 -0
  76. package/src/app/globals.css +200 -0
  77. package/src/app/history/page.tsx +658 -0
  78. package/src/app/layout.tsx +25 -0
  79. package/src/app/login/page.tsx +424 -0
  80. package/src/app/metrics/page.tsx +781 -0
  81. package/src/app/page.tsx +59 -0
  82. package/src/app/pricing/page.tsx +7 -0
  83. package/src/app/privacy/page.tsx +7 -0
  84. package/src/app/providers/page.tsx +193 -0
  85. package/src/app/providers/setup/[provider]/ProviderSetupClient.tsx +197 -0
  86. package/src/app/providers/setup/[provider]/constants.ts +35 -0
  87. package/src/app/providers/setup/[provider]/page.tsx +42 -0
  88. package/src/app/security/page.tsx +7 -0
  89. package/src/app/signup/page.tsx +533 -0
  90. package/src/app/terms/page.tsx +7 -0
  91. package/src/components/ActivityFeed.tsx +216 -0
  92. package/src/components/AddWorkspaceModal.tsx +170 -0
  93. package/src/components/AgentCard.test.tsx +134 -0
  94. package/src/components/AgentCard.tsx +585 -0
  95. package/src/components/AgentList.test.tsx +147 -0
  96. package/src/components/AgentList.tsx +419 -0
  97. package/src/components/AgentLogPreview.tsx +173 -0
  98. package/src/components/AgentProfilePanel.tsx +569 -0
  99. package/src/components/App.tsx +3424 -0
  100. package/src/components/BillingPanel.tsx +922 -0
  101. package/src/components/BillingResult.tsx +447 -0
  102. package/src/components/BroadcastComposer.tsx +690 -0
  103. package/src/components/ChannelAdminPanel.tsx +773 -0
  104. package/src/components/ChannelBrowser.tsx +385 -0
  105. package/src/components/ChannelChat.tsx +261 -0
  106. package/src/components/ChannelSidebar.tsx +399 -0
  107. package/src/components/CloudSessionProvider.tsx +130 -0
  108. package/src/components/CommandPalette.tsx +815 -0
  109. package/src/components/ConfirmationDialog.tsx +133 -0
  110. package/src/components/ConversationHistory.tsx +518 -0
  111. package/src/components/CoordinatorPanel.tsx +956 -0
  112. package/src/components/DecisionQueue.tsx +717 -0
  113. package/src/components/DirectMessageView.tsx +164 -0
  114. package/src/components/FileAutocomplete.tsx +368 -0
  115. package/src/components/FleetOverview.tsx +278 -0
  116. package/src/components/LogViewer.tsx +310 -0
  117. package/src/components/LogViewerPanel.tsx +482 -0
  118. package/src/components/Logo.tsx +284 -0
  119. package/src/components/MentionAutocomplete.tsx +384 -0
  120. package/src/components/MessageComposer.tsx +473 -0
  121. package/src/components/MessageList.tsx +725 -0
  122. package/src/components/MessageSenderName.tsx +91 -0
  123. package/src/components/MessageStatusIndicator.tsx +142 -0
  124. package/src/components/NewConversationModal.tsx +400 -0
  125. package/src/components/NotificationToast.tsx +488 -0
  126. package/src/components/OnlineUsersIndicator.tsx +164 -0
  127. package/src/components/Pagination.tsx +124 -0
  128. package/src/components/PricingPlans.tsx +386 -0
  129. package/src/components/ProjectList.tsx +711 -0
  130. package/src/components/ProviderAuthFlow.tsx +343 -0
  131. package/src/components/ProviderConnectionList.tsx +375 -0
  132. package/src/components/ProvisioningProgress.tsx +730 -0
  133. package/src/components/ReactionChips.tsx +70 -0
  134. package/src/components/ReactionPicker.tsx +121 -0
  135. package/src/components/RepoAccessPanel.tsx +787 -0
  136. package/src/components/RepositoriesPanel.tsx +901 -0
  137. package/src/components/ServerCard.tsx +202 -0
  138. package/src/components/SessionExpiredModal.tsx +128 -0
  139. package/src/components/SpawnModal.test.tsx +190 -0
  140. package/src/components/SpawnModal.tsx +1001 -0
  141. package/src/components/TaskAssignmentUI.tsx +375 -0
  142. package/src/components/TerminalProviderSetup.tsx +517 -0
  143. package/src/components/ThemeProvider.tsx +159 -0
  144. package/src/components/ThinkingIndicator.tsx +231 -0
  145. package/src/components/ThreadList.tsx +198 -0
  146. package/src/components/ThreadPanel.tsx +405 -0
  147. package/src/components/TrajectoryViewer.tsx +698 -0
  148. package/src/components/TypingIndicator.tsx +69 -0
  149. package/src/components/UsageBanner.tsx +231 -0
  150. package/src/components/UserProfilePanel.tsx +233 -0
  151. package/src/components/WorkspaceContext.tsx +95 -0
  152. package/src/components/WorkspaceSelector.tsx +234 -0
  153. package/src/components/WorkspaceStatusIndicator.tsx +396 -0
  154. package/src/components/XTermInteractive.tsx +516 -0
  155. package/src/components/XTermLogViewer.tsx +719 -0
  156. package/src/components/channels/ChannelDialogs.tsx +1411 -0
  157. package/src/components/channels/ChannelHeader.tsx +317 -0
  158. package/src/components/channels/ChannelMessageList.tsx +463 -0
  159. package/src/components/channels/ChannelViewV1.tsx +146 -0
  160. package/src/components/channels/MessageInput.tsx +302 -0
  161. package/src/components/channels/SearchInput.tsx +172 -0
  162. package/src/components/channels/SearchResults.tsx +336 -0
  163. package/src/components/channels/api.test.ts +1527 -0
  164. package/src/components/channels/api.ts +703 -0
  165. package/src/components/channels/index.ts +76 -0
  166. package/src/components/channels/mockApi.ts +344 -0
  167. package/src/components/channels/types.ts +566 -0
  168. package/src/components/hooks/index.ts +58 -0
  169. package/src/components/hooks/useAgentLogs.ts +504 -0
  170. package/src/components/hooks/useAgents.ts +127 -0
  171. package/src/components/hooks/useBroadcastDedup.test.ts +371 -0
  172. package/src/components/hooks/useBroadcastDedup.ts +86 -0
  173. package/src/components/hooks/useChannelAdmin.ts +329 -0
  174. package/src/components/hooks/useChannelBrowser.ts +239 -0
  175. package/src/components/hooks/useChannelCommands.ts +138 -0
  176. package/src/components/hooks/useChannels.ts +367 -0
  177. package/src/components/hooks/useDebounce.ts +29 -0
  178. package/src/components/hooks/useDirectMessage.test.ts +952 -0
  179. package/src/components/hooks/useDirectMessage.ts +141 -0
  180. package/src/components/hooks/useMessages.ts +310 -0
  181. package/src/components/hooks/useOrchestrator.test.ts +165 -0
  182. package/src/components/hooks/useOrchestrator.ts +424 -0
  183. package/src/components/hooks/usePinnedAgents.test.ts +356 -0
  184. package/src/components/hooks/usePinnedAgents.ts +140 -0
  185. package/src/components/hooks/usePresence.test.ts +245 -0
  186. package/src/components/hooks/usePresence.ts +377 -0
  187. package/src/components/hooks/useRecentRepos.ts +130 -0
  188. package/src/components/hooks/useSession.ts +209 -0
  189. package/src/components/hooks/useThread.ts +138 -0
  190. package/src/components/hooks/useTrajectory.ts +265 -0
  191. package/src/components/hooks/useWebSocket.ts +290 -0
  192. package/src/components/hooks/useWorkspaceMembers.ts +132 -0
  193. package/src/components/hooks/useWorkspaceRepos.ts +73 -0
  194. package/src/components/hooks/useWorkspaceStatus.ts +237 -0
  195. package/src/components/index.ts +81 -0
  196. package/src/components/layout/Header.tsx +311 -0
  197. package/src/components/layout/RepoContextHeader.tsx +361 -0
  198. package/src/components/layout/Sidebar.archive.test.tsx +126 -0
  199. package/src/components/layout/Sidebar.test.tsx +691 -0
  200. package/src/components/layout/Sidebar.tsx +900 -0
  201. package/src/components/layout/index.ts +7 -0
  202. package/src/components/settings/BillingSettingsPanel.tsx +564 -0
  203. package/src/components/settings/SettingsPage.tsx +683 -0
  204. package/src/components/settings/TeamSettingsPanel.tsx +560 -0
  205. package/src/components/settings/WorkspaceSettingsPanel.tsx +1368 -0
  206. package/src/components/settings/index.ts +11 -0
  207. package/src/components/settings/types.ts +79 -0
  208. package/src/components/utils/messageFormatting.test.tsx +331 -0
  209. package/src/components/utils/messageFormatting.tsx +597 -0
  210. package/src/index.ts +63 -0
  211. package/src/landing/AboutPage.tsx +77 -0
  212. package/src/landing/BlogContent.tsx +187 -0
  213. package/src/landing/BlogPage.tsx +47 -0
  214. package/src/landing/CareersPage.tsx +53 -0
  215. package/src/landing/ChangelogPage.tsx +33 -0
  216. package/src/landing/ContactPage.tsx +41 -0
  217. package/src/landing/DocsPage.tsx +43 -0
  218. package/src/landing/LandingPage.tsx +702 -0
  219. package/src/landing/PricingPage.tsx +549 -0
  220. package/src/landing/PrivacyPage.tsx +117 -0
  221. package/src/landing/SecurityPage.tsx +42 -0
  222. package/src/landing/StaticPage.tsx +165 -0
  223. package/src/landing/TermsPage.tsx +125 -0
  224. package/src/landing/blogData.ts +312 -0
  225. package/src/landing/index.ts +18 -0
  226. package/src/landing/styles.css +3673 -0
  227. package/src/lib/agent-merge.test.ts +43 -0
  228. package/src/lib/agent-merge.ts +35 -0
  229. package/src/lib/api.ts +1294 -0
  230. package/src/lib/cloudApi.ts +893 -0
  231. package/src/lib/colors.test.ts +175 -0
  232. package/src/lib/colors.ts +218 -0
  233. package/src/lib/config.ts +109 -0
  234. package/src/lib/hierarchy.ts +242 -0
  235. package/src/lib/stuckDetection.ts +142 -0
  236. package/src/lib/useUrlRouting.ts +190 -0
  237. package/src/types/index.ts +317 -0
  238. package/src/types/threading.ts +7 -0
  239. package/out/_next/static/chunks/285-dc644487a8d6500d.js +0 -1
  240. package/out/_next/static/css/4c58d9cf493aa626.css +0 -1
  241. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
  242. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_ssgManifest.js +0 -0
  243. /package/out/_next/static/chunks/{528-d375bc8b46912d2c.js → 528-f5f676996d613c25.js} +0 -0
  244. /package/out/_next/static/chunks/app/blog/let-them-cook-multi-agent-orchestration/{page-a58308f43557b908.js → page-b194f207fbd91862.js} +0 -0
@@ -0,0 +1,549 @@
1
+ /**
2
+ * Agent Relay Cloud - Pricing Page
3
+ *
4
+ * Dedicated pricing page with detailed plan comparison,
5
+ * feature matrix, and FAQ section.
6
+ *
7
+ * Aesthetic: Mission Control / Command Center (matches landing page)
8
+ */
9
+
10
+ import React, { useState, useEffect } from 'react';
11
+ import './styles.css';
12
+ import { LogoIcon } from '../components/Logo';
13
+
14
+ // Plan data with full details
15
+ const PLANS = [
16
+ {
17
+ id: 'free',
18
+ name: 'Free',
19
+ price: 0,
20
+ period: 'forever',
21
+ tagline: 'Try AI agent workflows',
22
+ description: 'Explore agent orchestration with limited resources. Perfect for testing.',
23
+ limits: {
24
+ workspaces: 1,
25
+ repos: 2,
26
+ concurrentAgents: 2,
27
+ computeHours: 5,
28
+ },
29
+ features: [
30
+ { name: 'Workspaces', value: '1', included: true },
31
+ { name: 'Repositories', value: '2', included: true },
32
+ { name: 'Concurrent agents', value: '2', included: true },
33
+ { name: 'Compute hours/month', value: '5', included: true },
34
+ { name: 'CPU type', value: 'Shared', included: true },
35
+ { name: 'Coordinator agents', value: null, included: false },
36
+ { name: 'Auto-scaling', value: null, included: false },
37
+ { name: 'Session persistence', value: null, included: false },
38
+ { name: 'Priority support', value: null, included: false },
39
+ { name: 'SSO/SAML', value: null, included: false },
40
+ ],
41
+ cta: 'Get Started Free',
42
+ ctaLink: '/signup',
43
+ highlighted: false,
44
+ },
45
+ {
46
+ id: 'pro',
47
+ name: 'Pro',
48
+ price: 69,
49
+ period: '/month',
50
+ tagline: 'For professional developers',
51
+ description: 'Build with AI agents daily. Includes auto-scaling and session persistence.',
52
+ limits: {
53
+ workspaces: 5,
54
+ repos: 10,
55
+ concurrentAgents: 5,
56
+ computeHours: 50,
57
+ },
58
+ features: [
59
+ { name: 'Workspaces', value: '5', included: true },
60
+ { name: 'Repositories', value: '10', included: true },
61
+ { name: 'Concurrent agents', value: '5', included: true },
62
+ { name: 'Compute hours/month', value: '50', included: true },
63
+ { name: 'CPU type', value: 'Shared', included: true },
64
+ { name: 'Coordinator agents', value: 'Yes', included: true },
65
+ { name: 'Auto-scaling', value: 'Yes', included: true },
66
+ { name: 'Session persistence', value: 'Yes', included: true },
67
+ { name: 'Priority support', value: null, included: false },
68
+ { name: 'SSO/SAML', value: null, included: false },
69
+ ],
70
+ cta: 'Start Free Trial',
71
+ ctaLink: '/signup?plan=pro',
72
+ highlighted: true,
73
+ badge: 'Most Popular',
74
+ },
75
+ {
76
+ id: 'team',
77
+ name: 'Team',
78
+ price: 129,
79
+ period: '/month',
80
+ tagline: 'For growing teams',
81
+ description: 'Dedicated CPUs, priority support, and team collaboration features.',
82
+ limits: {
83
+ workspaces: 20,
84
+ repos: 100,
85
+ concurrentAgents: 10,
86
+ computeHours: 200,
87
+ },
88
+ features: [
89
+ { name: 'Workspaces', value: '20', included: true },
90
+ { name: 'Repositories', value: '100', included: true },
91
+ { name: 'Concurrent agents', value: '10', included: true },
92
+ { name: 'Compute hours/month', value: '200', included: true },
93
+ { name: 'CPU type', value: 'Dedicated', included: true },
94
+ { name: 'Coordinator agents', value: 'Yes', included: true },
95
+ { name: 'Auto-scaling', value: 'Yes', included: true },
96
+ { name: 'Session persistence', value: 'Yes', included: true },
97
+ { name: 'Priority support', value: 'Yes', included: true },
98
+ { name: 'SSO/SAML', value: null, included: false },
99
+ ],
100
+ cta: 'Start Free Trial',
101
+ ctaLink: '/signup?plan=team',
102
+ highlighted: false,
103
+ },
104
+ {
105
+ id: 'enterprise',
106
+ name: 'Enterprise',
107
+ price: 499,
108
+ period: '/month',
109
+ tagline: 'For organizations at scale',
110
+ description: 'Unlimited resources, SSO, SLA guarantees, and dedicated support.',
111
+ limits: {
112
+ workspaces: Infinity,
113
+ repos: Infinity,
114
+ concurrentAgents: Infinity,
115
+ computeHours: Infinity,
116
+ },
117
+ features: [
118
+ { name: 'Workspaces', value: 'Unlimited', included: true },
119
+ { name: 'Repositories', value: 'Unlimited', included: true },
120
+ { name: 'Concurrent agents', value: 'Unlimited', included: true },
121
+ { name: 'Compute hours/month', value: 'Unlimited', included: true },
122
+ { name: 'CPU type', value: 'Dedicated', included: true },
123
+ { name: 'Coordinator agents', value: 'Yes', included: true },
124
+ { name: 'Auto-scaling', value: 'Yes', included: true },
125
+ { name: 'Session persistence', value: 'Yes', included: true },
126
+ { name: 'Priority support', value: 'Dedicated', included: true },
127
+ { name: 'SSO/SAML', value: 'Yes', included: true },
128
+ ],
129
+ cta: 'Contact Sales',
130
+ ctaLink: '/contact?subject=enterprise',
131
+ highlighted: false,
132
+ },
133
+ ];
134
+
135
+ const FAQ = [
136
+ {
137
+ q: 'What counts as a "compute hour"?',
138
+ a: 'A compute hour is measured when your agents are actively running in our cloud infrastructure. Time spent waiting for your input or idle time doesn\'t count. We track usage to the second and round up to the nearest minute for billing.',
139
+ },
140
+ {
141
+ q: 'Can I use my own AI API keys?',
142
+ a: 'Yes! Agent Relay orchestrates your agents—you connect your own Claude, Codex, or Gemini instances. We don\'t charge for AI API usage; that\'s between you and your AI provider. Our pricing covers the orchestration infrastructure.',
143
+ },
144
+ {
145
+ q: 'What are coordinator agents?',
146
+ a: 'Coordinators are special agents that oversee project groups. They delegate tasks to other agents, track progress, and ensure work is completed efficiently across multiple repositories. Available on Pro plans and above.',
147
+ },
148
+ {
149
+ q: 'What happens if I exceed my limits?',
150
+ a: 'We\'ll notify you when you\'re approaching your limits. If you exceed them, new agent spawns will be blocked until you upgrade or wait for the next billing cycle. Your existing agents will continue running.',
151
+ },
152
+ {
153
+ q: 'Can I change plans anytime?',
154
+ a: 'Absolutely. Upgrade instantly and get prorated billing. Downgrade takes effect at the end of your billing cycle. No long-term contracts required.',
155
+ },
156
+ {
157
+ q: 'Do you offer discounts for startups or open source?',
158
+ a: 'Yes! We offer 50% off for verified startups (less than $1M raised) and free Pro accounts for maintainers of popular open source projects. Contact us to apply.',
159
+ },
160
+ ];
161
+
162
+ export function PricingPage() {
163
+ const [billingCycle, setBillingCycle] = useState<'monthly' | 'annual'>('monthly');
164
+ const [openFaq, setOpenFaq] = useState<number | null>(null);
165
+
166
+ return (
167
+ <div className="pricing-page">
168
+ <div className="pricing-bg">
169
+ <GridBackground />
170
+ <GlowOrbs />
171
+ </div>
172
+
173
+ <Navigation />
174
+
175
+ <main>
176
+ <HeroSection billingCycle={billingCycle} setBillingCycle={setBillingCycle} />
177
+ <PlansSection billingCycle={billingCycle} />
178
+ <ComparisonTable />
179
+ <FaqSection openFaq={openFaq} setOpenFaq={setOpenFaq} />
180
+ <CtaSection />
181
+ </main>
182
+
183
+ <Footer />
184
+ </div>
185
+ );
186
+ }
187
+
188
+ function Navigation() {
189
+ const [scrolled, setScrolled] = useState(false);
190
+
191
+ useEffect(() => {
192
+ const handleScroll = () => setScrolled(window.scrollY > 50);
193
+ window.addEventListener('scroll', handleScroll);
194
+ return () => window.removeEventListener('scroll', handleScroll);
195
+ }, []);
196
+
197
+ return (
198
+ <nav className={`nav ${scrolled ? 'scrolled' : ''}`}>
199
+ <div className="nav-inner">
200
+ <a href="/" className="nav-logo">
201
+ <LogoIcon size={28} withGlow={true} />
202
+ <span className="logo-text">Agent Relay</span>
203
+ </a>
204
+
205
+ <div className="nav-links">
206
+ <a href="/#demo">Demo</a>
207
+ <a href="/#features">Features</a>
208
+ <a href="/pricing" className="active">Pricing</a>
209
+ <a href="https://docs.agent-relay.com/" className="nav-docs">Docs</a>
210
+ </div>
211
+
212
+ <div className="nav-actions">
213
+ <a href="/login" className="btn-ghost">Sign In</a>
214
+ <a href="/signup" className="btn-primary">Get Started</a>
215
+ </div>
216
+ </div>
217
+ </nav>
218
+ );
219
+ }
220
+
221
+ function HeroSection({
222
+ billingCycle,
223
+ setBillingCycle
224
+ }: {
225
+ billingCycle: 'monthly' | 'annual';
226
+ setBillingCycle: (cycle: 'monthly' | 'annual') => void;
227
+ }) {
228
+ return (
229
+ <section className="pricing-hero">
230
+ <div className="pricing-hero-content">
231
+ <div className="hero-badge">
232
+ <span className="badge-icon">◈</span>
233
+ <span>Simple, transparent pricing</span>
234
+ </div>
235
+
236
+ <h1>
237
+ <span className="title-line">Choose Your</span>
238
+ <span className="title-line gradient">Mission Control</span>
239
+ </h1>
240
+
241
+ <p className="hero-subtitle">
242
+ Start free. Scale as you grow. Pay only for what you use.
243
+ <br />
244
+ All plans include a 14-day free trial.
245
+ </p>
246
+
247
+ <div className="billing-toggle">
248
+ <button
249
+ className={billingCycle === 'monthly' ? 'active' : ''}
250
+ onClick={() => setBillingCycle('monthly')}
251
+ >
252
+ Monthly
253
+ </button>
254
+ <button
255
+ className={billingCycle === 'annual' ? 'active' : ''}
256
+ onClick={() => setBillingCycle('annual')}
257
+ >
258
+ Annual
259
+ <span className="save-badge">Save 20%</span>
260
+ </button>
261
+ </div>
262
+ </div>
263
+ </section>
264
+ );
265
+ }
266
+
267
+ function PlansSection({ billingCycle }: { billingCycle: 'monthly' | 'annual' }) {
268
+ const getPrice = (plan: typeof PLANS[0]) => {
269
+ if (plan.price === null) return 'Custom';
270
+ if (plan.price === 0) return '$0';
271
+ const price = billingCycle === 'annual' ? Math.floor(plan.price * 0.8) : plan.price;
272
+ return `$${price}`;
273
+ };
274
+
275
+ return (
276
+ <section className="plans-section">
277
+ <div className="plans-grid">
278
+ {PLANS.map((plan) => (
279
+ <div
280
+ key={plan.id}
281
+ className={`plan-card ${plan.highlighted ? 'highlighted' : ''}`}
282
+ >
283
+ {plan.badge && <div className="plan-badge">{plan.badge}</div>}
284
+
285
+ <div className="plan-header">
286
+ <h3>{plan.name}</h3>
287
+ <p className="plan-tagline">{plan.tagline}</p>
288
+ </div>
289
+
290
+ <div className="plan-price">
291
+ <span className="price">{getPrice(plan)}</span>
292
+ {plan.price !== null && plan.price > 0 && (
293
+ <span className="period">
294
+ {billingCycle === 'annual' ? '/mo, billed annually' : '/month'}
295
+ </span>
296
+ )}
297
+ {plan.price === 0 && <span className="period">forever</span>}
298
+ </div>
299
+
300
+ <p className="plan-description">{plan.description}</p>
301
+
302
+ <div className="plan-limits">
303
+ <div className="limit-item">
304
+ <span className="limit-icon">◇</span>
305
+ <span className="limit-value">{plan.limits.workspaces === Infinity ? '∞' : plan.limits.workspaces}</span>
306
+ <span className="limit-label">workspaces</span>
307
+ </div>
308
+ <div className="limit-item">
309
+ <span className="limit-icon">◈</span>
310
+ <span className="limit-value">{plan.limits.repos === Infinity ? '∞' : plan.limits.repos}</span>
311
+ <span className="limit-label">repos</span>
312
+ </div>
313
+ <div className="limit-item">
314
+ <span className="limit-icon">⬡</span>
315
+ <span className="limit-value">{plan.limits.concurrentAgents === Infinity ? '∞' : plan.limits.concurrentAgents}</span>
316
+ <span className="limit-label">agents</span>
317
+ </div>
318
+ <div className="limit-item">
319
+ <span className="limit-icon">⏱</span>
320
+ <span className="limit-value">{plan.limits.computeHours === Infinity ? '∞' : plan.limits.computeHours}</span>
321
+ <span className="limit-label">hours/mo</span>
322
+ </div>
323
+ </div>
324
+
325
+ <a
326
+ href={plan.ctaLink}
327
+ className={`btn-${plan.highlighted ? 'primary' : 'ghost'} btn-full`}
328
+ >
329
+ {plan.cta}
330
+ </a>
331
+ </div>
332
+ ))}
333
+ </div>
334
+ </section>
335
+ );
336
+ }
337
+
338
+ function ComparisonTable() {
339
+ const featureNames = PLANS[0].features.map(f => f.name);
340
+
341
+ return (
342
+ <section className="comparison-section">
343
+ <div className="section-header">
344
+ <span className="section-tag">Compare Plans</span>
345
+ <h2>Feature Comparison</h2>
346
+ <p>See exactly what's included in each plan.</p>
347
+ </div>
348
+
349
+ <div className="comparison-table-wrapper">
350
+ <table className="comparison-table">
351
+ <thead>
352
+ <tr>
353
+ <th className="feature-col">Feature</th>
354
+ {PLANS.map(plan => (
355
+ <th key={plan.id} className={plan.highlighted ? 'highlighted' : ''}>
356
+ {plan.name}
357
+ </th>
358
+ ))}
359
+ </tr>
360
+ </thead>
361
+ <tbody>
362
+ {featureNames.map((featureName, i) => (
363
+ <tr key={featureName}>
364
+ <td className="feature-col">{featureName}</td>
365
+ {PLANS.map(plan => {
366
+ const feature = plan.features[i];
367
+ return (
368
+ <td key={plan.id} className={plan.highlighted ? 'highlighted' : ''}>
369
+ {feature.included ? (
370
+ feature.value ? (
371
+ <span className="feature-value">{feature.value}</span>
372
+ ) : (
373
+ <span className="check">✓</span>
374
+ )
375
+ ) : (
376
+ <span className="dash">—</span>
377
+ )}
378
+ </td>
379
+ );
380
+ })}
381
+ </tr>
382
+ ))}
383
+ </tbody>
384
+ </table>
385
+ </div>
386
+ </section>
387
+ );
388
+ }
389
+
390
+ function FaqSection({
391
+ openFaq,
392
+ setOpenFaq
393
+ }: {
394
+ openFaq: number | null;
395
+ setOpenFaq: (index: number | null) => void;
396
+ }) {
397
+ return (
398
+ <section className="faq-section">
399
+ <div className="section-header">
400
+ <span className="section-tag">FAQ</span>
401
+ <h2>Questions? Answers.</h2>
402
+ <p>Everything you need to know about Agent Relay pricing.</p>
403
+ </div>
404
+
405
+ <div className="faq-grid">
406
+ {FAQ.map((item, i) => (
407
+ <div
408
+ key={i}
409
+ className={`faq-item ${openFaq === i ? 'open' : ''}`}
410
+ onClick={() => setOpenFaq(openFaq === i ? null : i)}
411
+ >
412
+ <div className="faq-question">
413
+ <span>{item.q}</span>
414
+ <span className="faq-toggle">{openFaq === i ? '−' : '+'}</span>
415
+ </div>
416
+ <div className="faq-answer">
417
+ <p>{item.a}</p>
418
+ </div>
419
+ </div>
420
+ ))}
421
+ </div>
422
+ </section>
423
+ );
424
+ }
425
+
426
+ function CtaSection() {
427
+ return (
428
+ <section className="cta-section">
429
+ <div className="cta-card">
430
+ <div className="cta-content">
431
+ <h2>Ready to orchestrate?</h2>
432
+ <p>Start free and upgrade when you need more power.</p>
433
+ <div className="cta-buttons">
434
+ <a href="/signup" className="btn-primary btn-large">
435
+ <span>Get Started Free</span>
436
+ <span className="btn-arrow">→</span>
437
+ </a>
438
+ <a href="/contact" className="btn-ghost btn-large">
439
+ Talk to Sales
440
+ </a>
441
+ </div>
442
+ </div>
443
+ <div className="cta-visual">
444
+ <div className="orbit">
445
+ <div className="orbit-ring ring-1" />
446
+ <div className="orbit-ring ring-2" />
447
+ <div className="orbit-ring ring-3" />
448
+ <div className="orbit-center">
449
+ <LogoIcon size={40} withGlow={true} />
450
+ </div>
451
+ <div className="orbit-dot dot-1">◈</div>
452
+ <div className="orbit-dot dot-2">⬡</div>
453
+ <div className="orbit-dot dot-3">◇</div>
454
+ </div>
455
+ </div>
456
+ </div>
457
+ </section>
458
+ );
459
+ }
460
+
461
+ function Footer() {
462
+ return (
463
+ <footer className="footer">
464
+ <div className="footer-inner">
465
+ <div className="footer-brand">
466
+ <a href="/" className="footer-logo">
467
+ <LogoIcon size={24} withGlow={true} />
468
+ <span className="logo-text">Agent Relay</span>
469
+ </a>
470
+ <p>Orchestrate AI agents like a symphony.</p>
471
+ </div>
472
+
473
+ <div className="footer-links">
474
+ <div className="footer-column">
475
+ <h4>Product</h4>
476
+ <a href="/#features">Features</a>
477
+ <a href="/pricing">Pricing</a>
478
+ <a href="https://docs.agent-relay.com/">Documentation</a>
479
+ <a href="/changelog">Changelog</a>
480
+ </div>
481
+ <div className="footer-column">
482
+ <h4>Company</h4>
483
+ <a href="/about">About</a>
484
+ <a href="/blog">Blog</a>
485
+ <a href="/careers">Careers</a>
486
+ <a href="/contact">Contact</a>
487
+ </div>
488
+ <div className="footer-column">
489
+ <h4>Legal</h4>
490
+ <a href="/privacy">Privacy</a>
491
+ <a href="/terms">Terms</a>
492
+ <a href="/security">Security</a>
493
+ </div>
494
+ </div>
495
+ </div>
496
+
497
+ <div className="footer-bottom">
498
+ <p>© 2025 Agent Relay. All rights reserved.</p>
499
+ <div className="social-links">
500
+ <a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub">
501
+ <GitHubIcon />
502
+ </a>
503
+ <a href="https://twitter.com/agent_relay" aria-label="Twitter">
504
+ <TwitterIcon />
505
+ </a>
506
+ </div>
507
+ </div>
508
+ </footer>
509
+ );
510
+ }
511
+
512
+ // Background components
513
+ function GridBackground() {
514
+ return (
515
+ <div className="grid-bg">
516
+ <div className="grid-lines" />
517
+ <div className="grid-glow" />
518
+ </div>
519
+ );
520
+ }
521
+
522
+ function GlowOrbs() {
523
+ return (
524
+ <div className="glow-orbs">
525
+ <div className="orb orb-1" />
526
+ <div className="orb orb-2" />
527
+ </div>
528
+ );
529
+ }
530
+
531
+ // Icons
532
+ function GitHubIcon() {
533
+ return (
534
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
535
+ <path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z" />
536
+ </svg>
537
+ );
538
+ }
539
+
540
+ function TwitterIcon() {
541
+ return (
542
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
543
+ <path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
544
+ </svg>
545
+ );
546
+ }
547
+
548
+
549
+ export default PricingPage;
@@ -0,0 +1,117 @@
1
+ /**
2
+ * Agent Relay Cloud - Privacy Policy Page
3
+ */
4
+
5
+ import React from 'react';
6
+ import { StaticPage } from './StaticPage';
7
+
8
+ export function PrivacyPage() {
9
+ return (
10
+ <StaticPage
11
+ title="Privacy Policy"
12
+ subtitle="We take your privacy seriously. Here's how we handle your data."
13
+ lastUpdated="January 15, 2026"
14
+ >
15
+ <h2>Overview</h2>
16
+ <p>
17
+ Agent Relay ("we", "our", or "us") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our AI agent orchestration platform.
18
+ </p>
19
+
20
+ <h2>Information We Collect</h2>
21
+
22
+ <h3>Account Information</h3>
23
+ <p>
24
+ When you create an account, we collect your name, email address, and authentication credentials. If you sign up using a third-party service (like GitHub), we receive basic profile information from that service.
25
+ </p>
26
+
27
+ <h3>Usage Data</h3>
28
+ <p>
29
+ We automatically collect information about how you interact with our platform, including:
30
+ </p>
31
+ <ul>
32
+ <li>Agent sessions and message logs (stored encrypted)</li>
33
+ <li>API requests and response metadata</li>
34
+ <li>Feature usage patterns and preferences</li>
35
+ <li>Browser type, device information, and IP address</li>
36
+ </ul>
37
+
38
+ <h3>Code and Repository Data</h3>
39
+ <p>
40
+ When you connect repositories to Agent Relay, we access only the files and metadata necessary to enable agent functionality. We do not store your source code permanently; it is processed in memory and cached temporarily for active sessions only.
41
+ </p>
42
+
43
+ <h2>How We Use Your Information</h2>
44
+ <p>We use the collected information to:</p>
45
+ <ul>
46
+ <li>Provide, maintain, and improve our services</li>
47
+ <li>Process transactions and send related information</li>
48
+ <li>Send technical notices, updates, and support messages</li>
49
+ <li>Respond to your comments, questions, and requests</li>
50
+ <li>Monitor and analyze usage patterns to improve user experience</li>
51
+ <li>Detect, prevent, and address technical issues and fraud</li>
52
+ </ul>
53
+
54
+ <h2>Data Sharing</h2>
55
+ <p>We do not sell your personal information. We may share data with:</p>
56
+ <ul>
57
+ <li><strong>AI Provider Partners:</strong> Your prompts and context are sent to AI providers (Anthropic, OpenAI, Google) to enable agent functionality. These providers have their own privacy policies.</li>
58
+ <li><strong>Service Providers:</strong> We use trusted third parties for hosting, analytics, and payment processing.</li>
59
+ <li><strong>Legal Requirements:</strong> We may disclose information if required by law or to protect our rights.</li>
60
+ </ul>
61
+
62
+ <h2>Data Security</h2>
63
+ <p>
64
+ We implement industry-standard security measures including:
65
+ </p>
66
+ <ul>
67
+ <li>AES-256 encryption for data at rest</li>
68
+ <li>TLS 1.3 for data in transit</li>
69
+ <li>Regular security audits and penetration testing</li>
70
+ <li>Zero-knowledge credential storage</li>
71
+ </ul>
72
+
73
+ <h2>Data Retention</h2>
74
+ <p>
75
+ We retain your account data for as long as your account is active. Agent session logs are retained for 30 days by default (configurable in settings). You can request deletion of your data at any time.
76
+ </p>
77
+
78
+ <h2>Your Rights</h2>
79
+ <p>You have the right to:</p>
80
+ <ul>
81
+ <li>Access and export your personal data</li>
82
+ <li>Correct inaccurate information</li>
83
+ <li>Request deletion of your data</li>
84
+ <li>Opt out of marketing communications</li>
85
+ <li>Restrict processing of your data</li>
86
+ </ul>
87
+
88
+ <h2>Cookies</h2>
89
+ <p>
90
+ We use essential cookies for authentication and session management. We also use analytics cookies (which you can opt out of) to understand how users interact with our platform.
91
+ </p>
92
+
93
+ <h2>International Transfers</h2>
94
+ <p>
95
+ Your data may be processed in the United States and other countries where our service providers operate. We ensure appropriate safeguards are in place for international data transfers.
96
+ </p>
97
+
98
+ <h2>Children's Privacy</h2>
99
+ <p>
100
+ Agent Relay is not intended for users under 18 years of age. We do not knowingly collect information from children.
101
+ </p>
102
+
103
+ <h2>Changes to This Policy</h2>
104
+ <p>
105
+ We may update this policy periodically. We will notify you of significant changes via email or through our platform.
106
+ </p>
107
+
108
+ <h2>Contact Us</h2>
109
+ <p>
110
+ For privacy-related questions or to exercise your rights, contact us at{' '}
111
+ <a href="mailto:privacy@agent-relay.com">privacy@agent-relay.com</a>.
112
+ </p>
113
+ </StaticPage>
114
+ );
115
+ }
116
+
117
+ export default PrivacyPage;