From a4fc92ed3cff4cb4045ea07c76e5af8bde547417 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 5 Aug 2025 22:57:14 +0000 Subject: [PATCH] Enhance user paths section with advanced animations cgen-964fa5aaee2f4d3b856ccdf02fe79f15 --- client/pages/Index.tsx | 91 +++++++++++++++++++++++------------------- 1 file changed, 50 insertions(+), 41 deletions(-) diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index 893bb6dc..b5a36deb 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -181,7 +181,7 @@ export default function Index() { {/* User Paths Section */}
-
+

Choose Your Path

@@ -191,47 +191,56 @@ export default function Index() {

-
- {userPaths.map((path) => { - const Icon = path.icon; - return ( - - -
-
- -
-
- {path.title} - - {path.description} - -
-
-
- -
- {path.features.map((feature, index) => ( -
- - {feature} + {!pathsVisible ? ( + + ) : ( +
+ {userPaths.map((path, index) => { + const Icon = path.icon; + return ( + + +
+
+
- ))} -
- - -
- ); - })} -
+
+ {path.title} + + {path.description} + +
+
+ + +
+ {path.features.map((feature, featureIndex) => ( +
+ + {feature} +
+ ))} +
+ +
+ + ); + })} +
+ )}