Skip to content

Commit 1becab6

Browse files
committed
Donation Page Designed
1 parent 3936612 commit 1becab6

File tree

12 files changed

+299
-45
lines changed

12 files changed

+299
-45
lines changed

public/assets/Icons/arrow.svg

Lines changed: 5 additions & 0 deletions
Loading

public/assets/Icons/pdf-icon.svg

Lines changed: 6 additions & 0 deletions
Loading

public/assets/Images/DonatePic.png

1.41 MB
Loading
5.02 MB
Binary file not shown.
237 KB
Binary file not shown.
270 KB
Binary file not shown.
269 KB
Binary file not shown.
269 KB
Binary file not shown.

src/constants/Donation.ts

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
import Image from '/assets/Images/DonatePic.png';
2+
import Arrow from '/assets/Icons/arrow.svg';
3+
import PdfIcon from '/assets/Icons/pdf-icon.svg';
4+
15
interface donationData {
26
heading: string;
37
subHeading: string;
@@ -6,11 +10,57 @@ interface donationData {
610
buttonText: string;
711
}
812

13+
export const Img = [Image, Arrow, PdfIcon];
14+
915
export const donationData: donationData = {
1016
heading: 'Support and Empower Those in Need',
1117
paragraph:
1218
"Support Sugar Labs and make a difference in children's education. Sugar Labs has brought educational software and authentic problem-solving to millions in the US and across the globe.",
1319
subHeading: 'Donate to Sugar Labs to make a positive impact',
14-
url: 'https://www.paypal.com/donate?campaign_id=NEAV3YL4H6B5S',
20+
url: 'https://www.every.org/sugar-labs?suggestedAmounts=17,37,57&frequency=ONCE#donate',
1521
buttonText: 'Donate now',
1622
};
23+
24+
export const IMPACT_STATS = [
25+
{
26+
value: '300+',
27+
title: 'Educational Tools',
28+
description:
29+
"We've created over three-hundred tools for learning that are used around the globe, helping students develop critical thinking and technical skills.",
30+
},
31+
{
32+
value: '1000s',
33+
title: 'Mentorship Hours',
34+
description:
35+
"We've mentored students for thousands of hours, guiding young developers at critical points in their development and helping them become leaders.",
36+
},
37+
{
38+
value: 'Global',
39+
title: 'Educational Impact',
40+
description:
41+
"We've assisted schools in bringing project-based learning activities into their classrooms, empowering youth with technology skills worldwide.",
42+
},
43+
];
44+
45+
export const FINANCIAL_FILINGS = [
46+
{
47+
year: '2023',
48+
link: 'assets/tax-filings/2023-Form-990EZ.pdf',
49+
},
50+
{
51+
year: '2022',
52+
link: 'assets/tax-filings/2022-Form-990EZ.pdf',
53+
},
54+
{
55+
year: '2021',
56+
link: 'assets/tax-filings/2021-Form-990EZ.pdf',
57+
},
58+
{
59+
year: '2020',
60+
link: 'assets/tax-filings/2020-Form-990EZ.pdf',
61+
},
62+
{
63+
year: '2019',
64+
link: 'assets/tax-filings/2019-Form-990EZ.pdf',
65+
},
66+
];

0 commit comments

Comments
 (0)