From c4cf353c5e16edc1682a5f34a9ddf44338b566e4 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 01:31:40 +0000 Subject: [PATCH] Render platform highlights section cgen-b2d55b89b7474a4ba0eb7ea66476b49d --- client/pages/docs/DocsGettingStarted.tsx | 27 ++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/client/pages/docs/DocsGettingStarted.tsx b/client/pages/docs/DocsGettingStarted.tsx index 99162a82..a7f48f29 100644 --- a/client/pages/docs/DocsGettingStarted.tsx +++ b/client/pages/docs/DocsGettingStarted.tsx @@ -262,6 +262,33 @@ export default function DocsGettingStarted() { ))} +
+
+ +

Explore the platform

+
+
+ {platformHighlights.map((item) => { + const Icon = item.icon; + return ( + + + + + {item.title} + + + + + {item.description} + + + + ); + })} +
+
+