Skip to content

Commit

Permalink
about page
Browse files Browse the repository at this point in the history
  • Loading branch information
huseyincansoylu committed Jun 7, 2023
1 parent a476138 commit 6dee18d
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ const SideBar = () => {
})}
</div>

{/* THIS WILL BE IN PROGRESS SOON THAST WHY ROUTE = "/" */}
<Link to="/" className="border-t text-center py-4">
<Link to="/about" className="border-t text-center py-4">
<span>About Fil+ Metrics</span>
</Link>
</nav>
Expand Down
82 changes: 81 additions & 1 deletion src/routes/About.tsx
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;

0 comments on commit 6dee18d

Please sign in to comment.