aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Home.js
blob: c0e2b24e724956d3f62c27d4d65de08c47b941c5 (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
import Hero from "../components/Hero";
import SectionTitle from "../components/SectionTitle";
import { benefitOne, benefitTwo } from "./Data";
import Benefits from "../components/Benefits";
import Cta from "../components/Cta";
import Faq from "../components/Faq";

const Home = () => {
    return (
        <>
            <Hero />
            <SectionTitle
                pretitle="How It Works"
                title="Getting Started with Helping Hands"
            >
                Helping Hands simplifies the process of finding or offering volunteer opportunities. Here's a step-by-step guide:
            </SectionTitle>
            <Benefits data={benefitOne} />
            <Benefits imgPos="right" data={benefitTwo} />
            <SectionTitle pretitle="FAQ" title="Frequently Asked Questions">
                Welcome to our FAQ section! Browse through common questions for quick answers. Your clarity and support matter to us. For any unanswered queries, reach out to our support team.
            </SectionTitle>
            <Faq />
            <Cta />
        </>
    );
}

export default Home;