aboutsummaryrefslogtreecommitdiffstats
path: root/pages/index.js
blob: e09c388e6a3863d273a68a53ddca2a6f275d12ff (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 "../components/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;