diff --git a/client/App.tsx b/client/App.tsx index 985e6108..839935fc 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -831,7 +831,14 @@ const App = () => ( {/* Developer Platform Routes */} } /> - } /> + + + + } + /> } /> } /> } /> diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index fa253b4e..cb874df9 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -88,6 +88,8 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) { { name: "Templates", href: "/dev-platform/templates" }, { name: "Marketplace", href: "/dev-platform/marketplace" }, { name: "Examples", href: "/dev-platform/examples" }, + { name: "divider", href: "#" }, + { name: "Main Dashboard", href: "/dashboard" }, { name: "Exit Dev Mode", href: "/" }, ]; diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index e81294da..a5944cc5 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -411,6 +411,41 @@ export default function Dashboard() { {/* Realms Tab */} + {/* Developer CTA Card */} + {user && ( + +
+
+ +
+
+

Building with AeThex?

+

+ Get API keys, access comprehensive documentation, and explore developer tools to integrate AeThex into your applications. +

+
+ + + + + + + + + +
+
+
+
+ )} +
{ARMS.map((arm) => { const IconComponent = arm.icon; diff --git a/client/pages/dev-platform/ApiReference.tsx b/client/pages/dev-platform/ApiReference.tsx index 50ec1584..13f7e64e 100644 --- a/client/pages/dev-platform/ApiReference.tsx +++ b/client/pages/dev-platform/ApiReference.tsx @@ -1,5 +1,6 @@ import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; +import { Breadcrumbs } from "@/components/dev-platform/Breadcrumbs"; import { ThreeColumnLayout } from "@/components/dev-platform/layouts/ThreeColumnLayout"; import { ApiEndpointCard } from "@/components/dev-platform/ui/ApiEndpointCard"; import { CodeTabs } from "@/components/dev-platform/CodeTabs"; @@ -68,6 +69,7 @@ export default function ApiReference() { return ( + +
{/* Warning for expiring keys */} {expiringSoon.length > 0 && ( diff --git a/client/pages/dev-platform/Marketplace.tsx b/client/pages/dev-platform/Marketplace.tsx index 7a5813da..7d193b86 100644 --- a/client/pages/dev-platform/Marketplace.tsx +++ b/client/pages/dev-platform/Marketplace.tsx @@ -1,6 +1,7 @@ import { useState } from "react"; import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; +import { Breadcrumbs } from "@/components/dev-platform/Breadcrumbs"; import { MarketplaceCard } from "@/components/dev-platform/MarketplaceCard"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; diff --git a/client/pages/dev-platform/QuickStart.tsx b/client/pages/dev-platform/QuickStart.tsx index f63ca7b0..d3675033 100644 --- a/client/pages/dev-platform/QuickStart.tsx +++ b/client/pages/dev-platform/QuickStart.tsx @@ -1,5 +1,6 @@ import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; +import { Breadcrumbs } from "@/components/dev-platform/Breadcrumbs"; import { ThreeColumnLayout } from "@/components/dev-platform/layouts/ThreeColumnLayout"; import { CodeTabs } from "@/components/dev-platform/CodeTabs"; import { Callout } from "@/components/dev-platform/ui/Callout"; @@ -85,6 +86,7 @@ export default function QuickStart() { return ( +
{/* Introduction */} diff --git a/client/pages/dev-platform/Templates.tsx b/client/pages/dev-platform/Templates.tsx index 2423d836..abc9123a 100644 --- a/client/pages/dev-platform/Templates.tsx +++ b/client/pages/dev-platform/Templates.tsx @@ -1,6 +1,7 @@ import { useState } from "react"; import Layout from "@/components/Layout"; import SEO from "@/components/SEO"; +import { Breadcrumbs } from "@/components/dev-platform/Breadcrumbs"; import { TemplateCard } from "@/components/dev-platform/TemplateCard"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button";