From f69e39eece815399af713695591828e615e97144 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Fri, 29 Apr 2022 19:24:58 -0400 Subject: [PATCH] Update copy --- web/pages/charity/index.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/web/pages/charity/index.tsx b/web/pages/charity/index.tsx index cf91efd2..c2b5a270 100644 --- a/web/pages/charity/index.tsx +++ b/web/pages/charity/index.tsx @@ -24,11 +24,13 @@ export default function Charity() { return ( - - + <Col className="max-w-xl gap-2"> + <Title className="!mt-0" text="Donate your M$ to charity!" /> <div className="mb-6 text-gray-500"> - Exchange your M$ for real dollars in the form of charity donations! + Throughout the month of May, every M$ 100 you contribute turns into + $1 USD to your chosen charity. We'll cover all processing fees! </div> + <input type="text" onChange={(e) => debouncedQuery(e.target.value)} @@ -48,6 +50,14 @@ export default function Charity() { No charities match your search :( </div> )} + + <div className="mt-10 italic text-gray-500"> + Note: Manifold is not affiliated with any of these charities, other + than being fans of their work. + <br /> + As Manifold is a for-profit entity, your contributions will not be tax + deductible. + </div> </Col> </Page> )