diff --git a/helm-frontend/src/components/Landing/CapabilitiesLanding.tsx b/helm-frontend/src/components/Landing/CapabilitiesLanding.tsx new file mode 100644 index 0000000000..ad3b327f2c --- /dev/null +++ b/helm-frontend/src/components/Landing/CapabilitiesLanding.tsx @@ -0,0 +1,40 @@ +import MiniLeaderboard from "@/components/MiniLeaderboard"; +import { Link } from "react-router-dom"; + +export default function CapabilitiesLanding() { + return ( +
+

HELM Capabilities

+
+
+

+ HELM Capabilities is a new leaderboard for benchmarking the + capabilities of foundation models, featuring 6 challenging + scenarios. +

+
+ + Blog Post + + + Leaderboard + +
+
+
+ +
+ + + +
+
+
+
+ ); +} diff --git a/helm-frontend/src/routes/Home.tsx b/helm-frontend/src/routes/Home.tsx index 79d9eb301e..e8cae70ddb 100644 --- a/helm-frontend/src/routes/Home.tsx +++ b/helm-frontend/src/routes/Home.tsx @@ -14,6 +14,7 @@ import Image2StructLanding from "@/components/Landing/Image2StructLanding"; import EWoKLanding from "@/components/Landing/EWoKLanding"; import MedicalLanding from "@/components/Landing/MedicalLanding"; import SafetyLanding from "@/components/Landing/SafetyLanding"; +import CapabilitiesLanding from "@/components/Landing/CapabilitiesLanding"; export default function Home() { // TODO consider a more streamlined way to do this? @@ -47,6 +48,8 @@ export default function Home() { return ; } else if (window.PROJECT_ID === "safety") { return ; + } else if (window.PROJECT_ID === "capabilities") { + return ; } else if (window.PROJECT_ID === "home") { return ; } else {