Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions frontend/src/routes/Router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ const MarketplaceStripeConflictEntry = lazyPlugin(
() => import("../plugins/marketplace"),
"MarketplaceStripeConflictPage",
);
// LLMWhisperer buyers get their own entry point: the LLMWhisperer Tackle
// listings redirect here, and the page claims against the LLMWhisperer portal
// backend (a different endpoint than the Unstract claim) — routing them to
// /marketplace-landing would fire the Unstract claim instead.
const LlmWhispererMarketplaceLandingEntry = lazyPlugin(
() => import("../plugins/llm-whisperer/pages/MarketplaceLandingPage.jsx"),
"MarketplaceLandingPage",
);

// Simple Prompt Studio pages.
const SimplePromptStudioHelper = lazyPlugin(
Expand Down Expand Up @@ -217,6 +225,12 @@ function Router() {
element={<MarketplaceStripeConflictEntry />}
/>
)}
{LlmWhispererMarketplaceLandingEntry && (
<Route
path="/llm-whisperer/marketplace-landing"
Comment thread
athul-rs marked this conversation as resolved.
element={<LlmWhispererMarketplaceLandingEntry />}
/>
)}
{CustomPlanCheckoutPage && (
<Route
path="/subscription/custom"
Expand Down