From bb584cca762546c0818c9b48f75a4ee5a3df32a5 Mon Sep 17 00:00:00 2001 From: gautamgambhir97 Date: Fri, 27 Sep 2024 15:14:45 +0530 Subject: [PATCH 1/2] feat: add id for friendly tooling --- components/landing-page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/landing-page.tsx b/components/landing-page.tsx index 79e4a5b7f..d0d129b7c 100644 --- a/components/landing-page.tsx +++ b/components/landing-page.tsx @@ -91,6 +91,7 @@ function LandingPage() {
router.push(link)} className={styles.comingSomewhereWrapper} + id={`home_tooling_${name}`} >
From 440f8d4169639c10cba3a4deca753e988889a90d Mon Sep 17 00:00:00 2001 From: gautamgambhir97 Date: Fri, 27 Sep 2024 15:23:04 +0530 Subject: [PATCH 2/2] fix: add lowecase name --- components/landing-page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/landing-page.tsx b/components/landing-page.tsx index d0d129b7c..42ac3c413 100644 --- a/components/landing-page.tsx +++ b/components/landing-page.tsx @@ -27,7 +27,7 @@ function LandingPage() { link: "/guides/agents/intermediate/rest-endpoints", }, { - name: "CrewAi", + name: "CrewAI", icon: crewai, link: "/guides/quickstart-with/CrewAI/startup-idea-analyser", }, @@ -91,7 +91,7 @@ function LandingPage() {
router.push(link)} className={styles.comingSomewhereWrapper} - id={`home_tooling_${name}`} + id={`home_tooling_${name.toLowerCase()}`} >