aboutsummaryrefslogtreecommitdiffstats
path: root/pages/index.js
diff options
context:
space:
mode:
authorJeff Kleinaitis <jeffkleinaitis@gmail.com>2024-03-29 14:51:17 -0400
committerGitHub <noreply@github.com>2024-03-29 14:51:17 -0400
commit9df0e1b528cc369ad99e2c46c6eba5e12a3f524f (patch)
treec25cd68ccc0feb278e6ce6c69ff15968f0ab51ce /pages/index.js
parentadf26e588e5917d6ac4f522aeca8d7e6523ada7e (diff)
parent8ca7091f6055c8fb3e63c1ba9e4a788776e6ec07 (diff)
Merge pull request #6 from digadoo/develop
Updates to Helping Hands landing page completed - all sections should now have current text, data, styling. The only outstanding item on the landing page is the three larger SVGs illustrations. Need to update these at some point to create a more cohesive landing page, but for now they'll work.
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js26
1 files changed, 4 insertions, 22 deletions
diff --git a/pages/index.js b/pages/index.js
index 1156b2b..529a382 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -4,10 +4,8 @@ import Navbar from "../components/navbar";
import SectionTitle from "../components/sectionTitle";
import { benefitOne, benefitTwo } from "../components/data";
-import Video from "../components/video";
import Benefits from "../components/benefits";
import Footer from "../components/footer";
-import Testimonials from "../components/testimonials";
import Cta from "../components/cta";
import Faq from "../components/faq";
import PopupWidget from "../components/popupWidget";
@@ -16,14 +14,13 @@ const Home = () => {
return (
<>
<Head>
- <title>Helping Hands - Free Nextjs & TailwindCSS Landing Page Template</title>
+ <title>Helping Hands</title>
<meta
name="description"
- content="Helping Hands is a free landing page template built with next.js & Tailwind CSS"
+ content="Helping Hands"
/>
<link rel="icon" href="/favicon.ico" />
</Head>
-
<Navbar />
<Hero />
<SectionTitle
@@ -33,24 +30,9 @@ const Home = () => {
</SectionTitle>
<Benefits data={benefitOne} />
<Benefits imgPos="right" data={benefitTwo} />
- <SectionTitle
- pretitle="Watch a video"
- title="Learn how to fullfil your needs">
- This section is to highlight a promo or demo video of your product.
- Analysts says a landing page with video has 3% more conversion rate. So,
- don&apos;t forget to add one. Just like this.
- </SectionTitle>
- <Video />
- <SectionTitle
- pretitle="Testimonials"
- title="Here's what our customers said">
- Testimonails is a great way to increase the brand trust and awareness.
- Use this section to highlight your popular customers.
- </SectionTitle>
- <Testimonials />
<SectionTitle pretitle="FAQ" title="Frequently Asked Questions">
- Answer your customers possible questions here, it will increase the
- conversion rate as well as support or chat requests.
+ 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 />