/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / pages / About.tsx
31 lines · 792 BBlameHistoryRaw
1import React from "react";
3const About: React.FC = () => {
4 return (
5 <div style={{ maxWidth: "800px", margin: "0 auto" }}>
6 <h1>About Zia</h1>
8 <p
9 style={{ fontSize: "1.1rem", lineHeight: "1.6", marginBottom: "2rem" }}
10 >
11 Zia is a benchmarking framework for evaluating compression algorithms on
12 numeric array datasets, with a focus on scientific data. It measures
13 compression ratios and performance metrics across various algorithms and
14 datasets.
15 </p>
17 <p>
18 <a
19 href="https://github.com/magland/zia"
20 target="_blank"
21 rel="noopener noreferrer"
22 style={{ color: "#0066cc" }}
23 >
24 View on GitHub
25 </a>
26 </p>
27 </div>
28 );
29};
31export default About;
moveopenescclose