-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: redo landing page * updates * updates * hide use cases
- Loading branch information
1 parent
010ded8
commit 622fd3c
Showing
27 changed files
with
319 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.demo { | ||
margin: 30px; | ||
} | ||
width: 100%; | ||
padding: 30px; | ||
max-width: 800px; | ||
text-align: center; | ||
border-radius: 40px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { Header } from "@site/src/pages"; | ||
import React from "react"; | ||
import styles from "./styles.module.css"; | ||
|
||
let imageStyle = { | ||
padding: "50px", | ||
width: "500px", | ||
}; | ||
|
||
export default function DiscoverSelect() { | ||
return ( | ||
<div className={styles.reportWrapper}> | ||
<div className={styles.left}> | ||
<img | ||
style={imageStyle} | ||
src={require("@site/static/img/slice-finder.png").default} | ||
alt="Screenshot of radar chart" | ||
/> | ||
</div> | ||
<div className={styles.right}> | ||
<Header | ||
title="Error Discovery" | ||
summary="Error Discovery" | ||
description="Discover where your models fail with automated error analysis." | ||
></Header> | ||
<p> | ||
Zeno includes advanced error discovery techniques such as{" "} | ||
<a href="https://research.google/pubs/slice-finder-automated-data-slicing-for-model-validation/"> | ||
slice finder | ||
</a>{" "} | ||
to automatically surface your models' systematic failures. | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
.features { | ||
display: flex; | ||
align-items: center; | ||
padding: 2rem 0; | ||
width: 100%; | ||
} | ||
|
||
.featureIcon { | ||
max-width: 100px; | ||
margin: auto; | ||
} | ||
|
||
.featureContainer { | ||
display: flex; | ||
flex-basis: 100%; | ||
gap: 50px; | ||
flex-wrap: wrap; | ||
flex-grow: 1; | ||
} | ||
.left { | ||
width: 60%; | ||
height: fit-content; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
align-items: middle; | ||
} | ||
|
||
.reportWrapper { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.right { | ||
width: 40%; | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
} | ||
|
||
@media only screen and (max-width: 700px) { | ||
.reportWrapper { | ||
flex-direction: column; | ||
} | ||
.left { | ||
width: 100%; | ||
margin-bottom: 30px; | ||
justify-content: center; | ||
} | ||
.right { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.featureWrapper { | ||
border-radius: 20px; | ||
padding: 20px; | ||
flex: 1; | ||
min-width: 200px; | ||
border: var(--gray) solid 1px; | ||
box-shadow: 2px 8px 10px rgba(0, 0, 0, 0.25); | ||
} | ||
|
||
.centerText { | ||
text-align: center; | ||
} | ||
|
||
.featureArrow { | ||
position: absolute; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.