in src/components/HomepageFeatures/index.tsx [23:53]
export default function HomepageFeatures(): JSX.Element {
return (
<section className={styles.features}>
<div className="container">
<div className={clsx("text--center", "padding-horiz--md")}>
<h2>Change Detection for Continuous Performance Engineering</h2>
<p className={styles.description}>
Otava performs statistical analysis of performance test results
stored in CSV files, PostgreSQL, BigQuery, or Graphite database. It
finds change-points and notifies about possible performance
regressions.
</p>
<div className={styles.buttons}>
<a
href="/docs/getting-started"
className="button button--primary button--lg"
>
Get Started
</a>
<a
href="https://github.com/apache/otava"
className="button button--secondary button--lg"
>
Source Code
</a>
</div>
</div>
</div>
</section>
);
}