aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Data.js
blob: a6bad9b663c29fef583cadf64e8195c6dcb74aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import {
    FaceSmileIcon,
    ChartBarSquareIcon,
    CursorArrowRaysIcon,
    DevicePhoneMobileIcon,
    AdjustmentsHorizontalIcon,
    SunIcon,
} from "@heroicons/react/24/solid";

import benefitOneImg from "../assets/img/benefit-one.png";
import benefitTwoImg from "../assets/img/benefit-two.png";

const benefitOne = {
    title: "Sign Up as an Organization",
    desc: "Join Helping Hands and showcase your opportunities to a wide audience of volunteers. Here's how:",
    image: benefitOneImg,
    bullets: [
        {
            title: "Create Your Profile",
            desc: "Provide details about your organization, including your mission, location, and the types of volunteer opportunities you offer.",
            icon: <FaceSmileIcon />,
        },
        {
            title: "Post Opportunities",
            desc: "List specific volunteer opportunities available within your organization, including dates, times, and required skills or qualifications.",
            icon: <ChartBarSquareIcon />,
        },
        {
            title: "Connect with Volunteers",
            desc: "Receive applications from interested volunteers and communicate directly with them to coordinate volunteer activities.",
            icon: <CursorArrowRaysIcon />,
        },
    ],
};

const benefitTwo = {
    title: "Sign Up as a Volunteer",
    desc: "Get involved with causes you care about and make a difference in your community through Helping Hands. Here's how:",
    image: benefitTwoImg,
    bullets: [
        {
            title: "Create Your Profile",
            desc: "Set up your volunteer profile, including your interests, skills, and availability.",
            icon: <DevicePhoneMobileIcon />,
        },
        {
            title: "Browse Opportunities",
            desc: "Explore a variety of volunteer opportunities posted by organizations, sorted by cause, location, and time commitment.",
            icon: <AdjustmentsHorizontalIcon />,
        },
        {
            title: "Apply and Volunteer",
            desc: "Submit applications for volunteer opportunities that match your interests, and start making a positive impact.",
            icon: <SunIcon />,
        },
    ],
};


export {benefitOne, benefitTwo};