-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOverviewDataGrowthNew.tsx
More file actions
44 lines (40 loc) · 1.39 KB
/
OverviewDataGrowthNew.tsx
File metadata and controls
44 lines (40 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import styles from "@components/OverviewDataGrowthNew.module.scss";
import GutterContainer from "./GutterContainer";
export default function OverviewDataGrowthNew({
totalClientCount,
totalDataOnboarded,
}) {
return (
<div className={styles.body}>
<video className={styles.video} autoPlay muted loop>
<source
src="https://user-images.githubusercontent.com/28320272/230458369-7a393957-7a5f-489c-bd16-2c2e9cf267b4.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<GutterContainer>
<div className={styles.heroContainer}>
<h1 className={styles.headline}>
Filecoin<br></br> Client Explorer
</h1>
<p className={styles.caption}>
View real-time and historical information about client data storage
on the Filecoin Network
</p>
<div className={styles.container}>
<div>
<h4 className={styles.data}>745.4 PiB</h4>
<h4 className={styles.data}>{totalDataOnboarded}</h4>
<p className={styles.dataTitle}>Data onboarded</p>
</div>
<div>
<h4 className={styles.data}>{totalClientCount}</h4>
<p className={styles.dataTitle}>Clients served</p>
</div>
</div>
</div>
</GutterContainer>
</div>
);
}