Skip to content

Commit 6f9d70d

Browse files
committed
front: add link to github
1 parent 509500a commit 6f9d70d

File tree

1 file changed

+38
-6
lines changed

1 file changed

+38
-6
lines changed

web-app/src/pages/index.tsx

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,48 @@ export default function Home() {
8080

8181
<div className="bg-white/90 backdrop-blur-md rounded-2xl p-8 mb-8 shadow-lg border border-pink-100">
8282
<h2 className="text-2xl font-semibold text-purple-700 mb-4">How It Works</h2>
83-
<p className="text-gray-700 mb-6 leading-relaxed">
83+
<p className="text-gray-700 mb-4">
8484
Co-Match is a privacy-focused dating app that uses <b>zero-knowledge proofs</b> and <b>multiparty computation</b> to match you
8585
with potential partners without revealing your personal information. Here&apos;s how it works:
8686
</p>
87-
<ol className="list-decimal list-inside space-y-3 text-gray-600">
88-
<li className="hover:text-purple-600 transition-colors">Set your profile and preferences (you can select up to 3 interests)</li>
89-
<li className="hover:text-purple-600 transition-colors">Our system will find potential matches based on your criteria</li>
90-
<li className="hover:text-purple-600 transition-colors">If there&apos;s a mutual match, you&apos;ll both be notified</li>
91-
<li className="hover:text-purple-600 transition-colors">Your personal data remains private throughout the entire process</li>
87+
<ol className="list-decimal list-inside space-y-2 text-gray-600">
88+
<li>Set your profile and preferences (you can select up to 3 interests)</li>
89+
<li>Our system will find potential matches based on your criteria</li>
90+
<li>If there&apos;s a mutual match, you&apos;ll both be notified</li>
91+
<li>Your personal data remains private throughout the entire process</li>
9292
</ol>
93+
<p className="text-gray-700 mt-6 p-4 bg-gradient-to-r from-pink-50 to-purple-50 rounded-xl border border-pink-100">
94+
This is a proof of concept built with{" "}
95+
<a
96+
href="https://noir-lang.org"
97+
target="_blank"
98+
rel="noopener noreferrer"
99+
className="text-purple-600 hover:text-purple-700 font-medium"
100+
>
101+
Noir
102+
</a>{" "}
103+
and{" "}
104+
<a
105+
href="https://taceo.io/"
106+
target="_blank"
107+
rel="noopener noreferrer"
108+
className="text-purple-600 hover:text-purple-700 font-medium"
109+
>
110+
co-snarks
111+
</a>
112+
, demonstrating how zero-knowledge proofs and multiparty computation can be used to create truly private dating applications.
113+
<br />
114+
Check out the{" "}
115+
<a
116+
href="https://github.com/teddav/co-match.nr"
117+
target="_blank"
118+
rel="noopener noreferrer"
119+
className="text-purple-600 hover:text-purple-700 font-medium"
120+
>
121+
source code
122+
</a>{" "}
123+
to learn more about the implementation! 🚀
124+
</p>
93125
</div>
94126

95127
{view !== "preferences" && (

0 commit comments

Comments
 (0)