diff --git a/docs/intro.mdx b/docs/intro.mdx index d3c25d8..f90c259 100644 --- a/docs/intro.mdx +++ b/docs/intro.mdx @@ -9,6 +9,10 @@ import CodeBlock from "@theme/CodeBlock"; Zeno is an **interactive AI evaluation platform** for exploring, debugging, and sharing how your AI systems perform. Evaluate any task and data type with Zeno's [modular views](/docs/views/) which support everything from chatbot conversations to object detection and audio transcription. +:::tip +Explore public Zeno reports and projects on [Zeno Hub](https://hub.zenoml.com/) to see what's possible with Zeno! +::: + ## Creating a Project The core of Zeno are **projects**, which consist of a base evaluation dataset and any number of AI system outputs. diff --git a/docusaurus.config.js b/docusaurus.config.js index 2d8f24f..a572c91 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -79,13 +79,13 @@ const config = { srcDark: "img/zeno_dark.png", }, items: [ - { to: "/about", label: "About", position: "left" }, { type: "doc", docId: "intro", position: "left", label: "Docs", }, + { to: "/about", label: "About", position: "left" }, { to: "/faq", label: "FAQ", position: "left" }, { type: "html", @@ -117,14 +117,14 @@ const config = { label: "Home", to: "/", }, - { - label: "About", - to: "/about/", - }, { label: "Docs", to: "/docs/intro", }, + { + label: "About", + to: "/about/", + }, { label: "FAQ", to: "/faq/", diff --git a/src/components/ChartSelect/index.tsx b/src/components/ChartSelect/index.tsx index b0e825d..afca393 100644 --- a/src/components/ChartSelect/index.tsx +++ b/src/components/ChartSelect/index.tsx @@ -16,6 +16,19 @@ export default function DatatypeSelect() { return (
+
+

+ Use Zeno's drag-and-drop interface to create interactive charts. Create a radar chart + comparing multiple models on different slices of your data, or a beeswarm plot to compare + hundreds of models. +

+
+
-
-
-

- Use Zeno's drag-and-drop interface to create interactive charts. Create a radar chart - comparing multiple models on different slices of your data, or a beeswarm plot to compare - hundreds of models. -

-
); } diff --git a/src/components/ChartSelect/styles.module.css b/src/components/ChartSelect/styles.module.css index 5e46929..a7408fb 100644 --- a/src/components/ChartSelect/styles.module.css +++ b/src/components/ChartSelect/styles.module.css @@ -17,13 +17,20 @@ flex-wrap: wrap; flex-grow: 1; } -.left { +.right { width: 60%; height: fit-content; display: flex; flex-direction: row; flex-wrap: wrap; align-items: middle; + justify-content: end; +} +/* Add this at the bottom of your CSS file */ +@media (max-width: 768px) { + .right { + justify-content: start; + } } .reportWrapper { @@ -31,7 +38,7 @@ align-items: center; } -.right { +.left { width: 40%; margin-right: 10px; margin-left: 10px; @@ -52,7 +59,6 @@ } .featureWrapper { - /* background: linear-gradient(rgba(137,133,199,1) 0%, rgba(126,121,196,1) 100%); */ border-radius: 20px; padding: 20px; flex: 1; diff --git a/src/components/Demo/Demo.tsx b/src/components/Demo/Demo.tsx index 031e4e7..2546cf8 100644 --- a/src/components/Demo/Demo.tsx +++ b/src/components/Demo/Demo.tsx @@ -3,12 +3,9 @@ import styles from "./index.module.css"; export function Demo() { return ( -
-