Skip to content

Commit 1ff25f4

Browse files
authored
Adding FAQs section (#24)
* Adding FAQs section * Completed Testimonials with Responsiveness * slash removal
1 parent 273db28 commit 1ff25f4

File tree

11 files changed

+198
-17
lines changed

11 files changed

+198
-17
lines changed

public/assets/Images/faq.png

479 KB
Loading
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Loading
Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 8 additions & 0 deletions
Loading

src/constants/Stats.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import mentorsTeaching from '/assets/Stats/MentorsHelping.svg';
77
import apostrophie from '/assets/Stats/quote-icon.svg';
88
import leftHeart from '/assets/Stats/HeartLeft.svg';
99
import rightHeart from '/assets/Stats/HeartRight.svg';
10+
import faq from '/assets/Images/faq.png';
1011

1112
export const stats = {
1213
kidlaptop,
@@ -18,6 +19,7 @@ export const stats = {
1819
apostrophie,
1920
leftHeart,
2021
rightHeart,
22+
faq,
2123
};
2224

2325
export const statisticsData = [

src/constants/aboutUs/faqs.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
const faqs = [
2+
{
3+
question: 'What is Sugar Labs?',
4+
answer:
5+
'Sugar Labs, a 501(c)(3) non-profit foundation, serves as a support base and gathering place for the community of educators and software developers who want to extend the Sugar platform and who have been creating Sugar-compatible applications.',
6+
},
7+
{
8+
question: 'What is the mission of Sugar Labs?',
9+
answer:
10+
'The overarching mission of Sugar Labs is to support the Sugar platform through software development, and community outreach and support. The purpose of the Sugar platform is provide a software and content environment that enhances learning.',
11+
},
12+
{
13+
question: 'What are the principles that guide Sugar Labs?',
14+
answer:
15+
'Sugar Labs subscribes to principle that learning thrives within a culture of freedom of expression, hence it has a natural affinity with the free software movement.',
16+
},
17+
{
18+
question:
19+
'What makes Sugar different from other educational software platforms?',
20+
answer:
21+
'The Sugar interface, in its departure from the desktop metaphor for computing, is the first serious attempt to create a user interface that is based on both cognitive and social constructivism.',
22+
},
23+
{
24+
question: 'Who can use Sugar and how do they benefit?',
25+
answer:
26+
'Sugar is a free software project, freely available to anyone who wants to use it or improve upon it. The Sugar platform was designed for young children (K–6), but it is finding applicability in a number of different venues.',
27+
},
28+
{
29+
question: 'Are there any platforms where Sugar runs on?',
30+
answer:
31+
'The Sugar Learning Platform is a leading learning platform that began in the famous One Laptop Per Child project. It is used every day by nearly 3 million children around the world.',
32+
},
33+
];
34+
35+
export default faqs;
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
export const quickAnswers = [
2+
{
3+
question: 'Is Music Blocks free to use?',
4+
answer: 'Yes, Music Blocks is a 100% free to use, open sourced software.',
5+
image: 'assets/QuickAnswers/cards.svg',
6+
},
7+
{
8+
question: 'What is Music Blocks?',
9+
answer:
10+
'A visual programming language for creating music and learning coding.',
11+
image: 'assets/QuickAnswers/Headset.svg',
12+
},
13+
{
14+
question: 'Can I use Sugar on any device?',
15+
answer: 'Yes! It runs on Linux, Windows, macOS, and live USBs.',
16+
image: 'assets/QuickAnswers/monitor-mobbile.svg',
17+
},
18+
{
19+
question: 'Who develops Sugar and Music Blocks?',
20+
answer: 'Sugar Labs and a global open-source community.',
21+
image: 'assets/QuickAnswers/people.svg',
22+
},
23+
{
24+
question: 'How can I contribute to Sugar Labs?',
25+
answer: 'By coding, translating, designing, or writing docs!',
26+
image: 'assets/QuickAnswers/task.svg',
27+
},
28+
{
29+
question: 'Is Sugar Labs a nonprofit?',
30+
answer: 'Yes! It creates free, open-source educational software.',
31+
image: 'assets/QuickAnswers/card-slash.svg',
32+
},
33+
];

0 commit comments

Comments
 (0)