-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a476138
commit 6dee18d
Showing
2 changed files
with
82 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,85 @@ | ||
const About = () => { | ||
return <div>About Page for filplus metrics </div>; | ||
return ( | ||
<div className="flex flex-col"> | ||
<div className="bg-gradient-to-r from-[#0091ff] to-[#39c1cb] h-[300px] text-white flex items-center "> | ||
<div className="container mx-auto font-bold text-3xl tracking-wide"> | ||
About Fil+ Metrics | ||
</div> | ||
</div> | ||
<div className="bg-gray-100 min-h-screen"> | ||
<div className="container mx-auto bg-white rounded-md shadow-lg -translate-y-16 p-5"> | ||
<div> | ||
<h4 className="text-xl font-semibold">About Fil+</h4> | ||
<p className="pt-4 text-[15px]"> | ||
Filecoin Plus is a layer of social trust on top of the Filecoin | ||
Network to help incentivize the storage of real data. Root | ||
key-holders, notaries, clients, and storage providers, interact | ||
through the allocation and spending of DataCap. You can read more | ||
about the Fil+ program here. | ||
</p> | ||
<p className="pt-4 text-[15px]"> | ||
Clients looking to utilize storage on the network apply to receive | ||
DataCap from Notaries, which can be used to incentivize storage | ||
providers to make storage deals. Notaries are community-elected | ||
trustees responsible for allocating DataCap to parties storing | ||
useful data on the network. Storage Providers that receive DataCap | ||
receive a 10x boost to their quality-adjusted power for the | ||
storage space offered in that deal, which increases their block | ||
reward share in the network. This creates a mechanism that | ||
incentivizes all participants to make Filecoin more useful. | ||
</p> | ||
<p className="pt-4 text-[15px]"> | ||
The goal of this site is to provide metrics, insights, and audit | ||
accountability tools for the Filecoin Plus community. You can see | ||
health statistics of the overall program, along with tables of | ||
data to track the interactions between the stakeholders (Notaries, | ||
Clients, and Storage Providers). This site was created by Digital | ||
M.O.B. in collaboration with Protocol Labs and the Filecoin | ||
Foundation providing development grants. | ||
</p> | ||
</div> | ||
<div> | ||
<h4 className="text-xl font-semibold pt-4">Dashboard:</h4> | ||
<p className="pt-4 text-[15px]"> | ||
Filecoin Plus is a layer of social trust on top of the Filecoin | ||
Network to help incentivize the storage of real data. Root | ||
key-holders, notaries, clients, and storage providers, interact | ||
through the allocation and spending of DataCap. You can read more | ||
about the Fil+ program here. | ||
</p> | ||
<p className="pt-4 text-[15px]"> | ||
The goal of this site is to provide metrics, insights, and audit | ||
accountability tools for the Filecoin Plus community. You can see | ||
health statistics of the overall program, along with tables of | ||
data to track the interactions between the stakeholders (Notaries, | ||
Clients, and Storage Providers). This site was created by Digital | ||
M.O.B. in collaboration with Protocol Labs and the Filecoin | ||
Foundation providing development grants. | ||
</p> | ||
</div> | ||
<div> | ||
<h4 className="text-xl font-semibold pt-4">Blockchain:</h4> | ||
<p className="pt-4 text-[15px]"> | ||
Filecoin Plus is a layer of social trust on top of the Filecoin | ||
Network to help incentivize the storage of real data. Root | ||
key-holders, notaries, clients, and storage providers, interact | ||
through the allocation and spending of DataCap. You can read more | ||
about the Fil+ program here. | ||
</p> | ||
<p className="pt-4 text-[15px]"> | ||
The goal of this site is to provide metrics, insights, and audit | ||
accountability tools for the Filecoin Plus community. You can see | ||
health statistics of the overall program, along with tables of | ||
data to track the interactions between the stakeholders (Notaries, | ||
Clients, and Storage Providers). This site was created by Digital | ||
M.O.B. in collaboration with Protocol Labs and the Filecoin | ||
Foundation providing development grants. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default About; |