aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Home.js
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-09 15:02:44 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-09 15:02:44 -0400
commit7c2574f1985cddba1e6fa6fcc6f8e1c019aaf7ed (patch)
tree34b1f3e90dd6a7d83cb7c3c9b71b34a138194548 /src/components/Home.js
parent1425783fe7f22efcdcc320de6d3ba49a83a44f3c (diff)
refactor: Removed NextJS from project
Diffstat (limited to 'src/components/Home.js')
-rw-r--r--src/components/Home.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/Home.js b/src/components/Home.js
new file mode 100644
index 0000000..c0e2b24
--- /dev/null
+++ b/src/components/Home.js
@@ -0,0 +1,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; \ No newline at end of file