aboutsummaryrefslogtreecommitdiffstats
path: root/pages/index.js
blob: 529a38203ef2ef49c95409e169b1cb3b809bff10 (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
import Head from "next/head";
import Hero from "../components/hero";
import Navbar from "../components/navbar";
import SectionTitle from "../components/sectionTitle";

import { benefitOne, benefitTwo } from "../components/data";
import Benefits from "../components/benefits";
import Footer from "../components/footer";
import Cta from "../components/cta";
import Faq from "../components/faq";
import PopupWidget from "../components/popupWidget";

const Home = () => {
  return (
    <>
      <Head>
        <title>Helping Hands</title>
        <meta
          name="description"
          content="Helping Hands"
        />
        <link rel="icon" href="/favicon.ico" />
      </Head>
      <Navbar />
      <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 outin to our support team.
      </SectionTitle>
      <Faq />
      <Cta />
      <Footer />
      <PopupWidget />
    </>
  );
}

export default Home;