Skip to content

Commit

Permalink
Merge pull request privacy-scaling-explorations#853 from privacy-scal…
Browse files Browse the repository at this point in the history
…ing-explorations/feat/update-website-features

feat: update features on homepage
  • Loading branch information
samajammin authored Dec 5, 2023
2 parents c20bf33 + 075ce47 commit 90d6803
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions website/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,32 @@ type FeatureItem = {

const FeatureList: FeatureItem[] = [
{
title: "Easy to Use",
title: "Highly secure",
Svg: require("@site/static/img/undraw_docusaurus_mountain.svg").default,
description: <>MACI was designed to be an easy to use voting solution.</>,
description: (
<>
MACI was designed to be a secure voting system. It's built using smart contracts on the Ethereum blockchain,
which ensures votes cannot be faked, censored, or tampered with.
</>
),
},
{
title: "Ensure privacy is preserved",
title: "Protects privacy",
Svg: require("@site/static/img/undraw_docusaurus_tree.svg").default,
description: <>With MACI, you can rest assured that your privacy is preserved when participating in a vote.</>,
description: (
<>
With MACI, votes are encrypted before submitting them on-chain to ensure that your privacy is preserved when
participating in a vote.
</>
),
},
{
title: "Powered by zk-SNARKs",
Svg: require("@site/static/img/undraw_docusaurus_react.svg").default,
description: (
<>
MACI is powered by zk-SNARKs, a cutting edge cryptographic technology that allows for the verification of
computations without revealing the inputs or outputs.
MACI is powered by zk-SNARKs, a cutting edge cryptographic technology that ensures votes are counted correctly
without revealing the individual votes.
</>
),
},
Expand Down

0 comments on commit 90d6803

Please sign in to comment.