+ Subscription tiers +
+{tier.description}
+{tier.limits}
+diff --git a/portal/src/app/marketplace/entitlements/[slug]/page.tsx b/portal/src/app/marketplace/entitlements/[slug]/page.tsx
index 4ed4a69..1eeb812 100644
--- a/portal/src/app/marketplace/entitlements/[slug]/page.tsx
+++ b/portal/src/app/marketplace/entitlements/[slug]/page.tsx
@@ -6,6 +6,7 @@ import { signIn, useSession } from 'next-auth/react';
import { useCallback, useEffect, useState } from 'react';
import { partnerStackServices } from '@/lib/corporate-site-data';
+import { gftdMarketplaceService } from '@/lib/gftd-marketplace';
type ProductInfo = {
slug: string;
@@ -38,7 +39,40 @@ export default function MarketplaceEntitlementPage() {
const [message, setMessage] = useState
+ GFTD Directory +
++ Access approved live source lanes, redacted public-safe outputs, bounded observability, + and evidence-backed operational controls through Sankofa Marketplace. +
+ +{tier.description}
+{tier.limits}
+Service endpoint:{' '} @@ -192,7 +271,7 @@ export default function MarketplaceEntitlementPage() { onClick={handleSubscribe} className="mt-6 rounded-lg bg-teal-600 px-5 py-2.5 text-sm font-medium text-white hover:bg-teal-500 disabled:opacity-60" > - {submitting ? 'Submitting…' : 'Request subscription'} + {submitting ? 'Submitting…' : isGftd ? 'Request GFTD access' : 'Request subscription'} )} @@ -200,6 +279,13 @@ export default function MarketplaceEntitlementPage() { {error &&
{error}
} + {isGftd ? ( ++ GFTD is rights-aware entity intelligence, not legal authority, not a payment rail, and not a + license to republish restricted data. +
+ ) : null} +
Contract/PO-first billing — automated Stripe checkout is on the roadmap. Operator Keycloak grants
run via grant-marketplace-entitlements-keycloak.sh.
diff --git a/portal/src/app/marketplace/page.tsx b/portal/src/app/marketplace/page.tsx
index 5e1a1b5..bd46d42 100644
--- a/portal/src/app/marketplace/page.tsx
+++ b/portal/src/app/marketplace/page.tsx
@@ -10,6 +10,7 @@ import {
platformServices,
productDivisions,
} from '@/lib/corporate-site-data';
+import { gftdMarketplaceService } from '@/lib/gftd-marketplace';
export const metadata = {
title: 'Marketplace — Sankofa Phoenix',
@@ -17,6 +18,8 @@ export const metadata = {
};
export default function MarketplacePage() {
+ const marketplacePartnerServices = [...partnerStackServices, gftdMarketplaceService];
+
return (