diff --git a/client/pages/Index.tsx b/client/pages/Index.tsx index bdf5ba2e..a352eca7 100644 --- a/client/pages/Index.tsx +++ b/client/pages/Index.tsx @@ -49,6 +49,7 @@ export default function Index() { type FeatureCard = { title: string; description: string; + external?: boolean; icon: any; color: string; link?: string; @@ -344,13 +345,25 @@ export default function Index() { /> {feature.link ? (
- - Explore - - + {feature.external ? ( + + Explore + + + ) : ( + + Explore + + + )}
) : null}