This commit is contained in:
Ebube
2023-08-29 11:20:07 +01:00
parent f7ac23748d
commit 0c4be2733f
5 changed files with 282 additions and 258 deletions
+77 -68
View File
@@ -1,74 +1,83 @@
import React from 'react';
import heroThumbOne from '../../assets/images/app-thumb-1.png';
import heroThumbTwo from '../../assets/images/app-pic.png';
import shapeTwo from '../../assets/images/shape/shape-2.png';
import shapeThree from '../../assets/images/shape/shape-3.png';
import shapeFour from '../../assets/images/shape/shape-4.png';
import getConfig from './../../Config/config'
import CustomSlider from '../customSlider/CustomSlider';
import React from "react";
import heroThumbOne from "../../assets/images/app-thumb-1.png";
import heroThumbTwo from "../../assets/images/app-pic.png";
import shapeTwo from "../../assets/images/shape/shape-2.png";
import shapeThree from "../../assets/images/shape/shape-3.png";
import shapeFour from "../../assets/images/shape/shape-4.png";
import getConfig from "./../../Config/config";
import CustomSlider from "../customSlider/CustomSlider";
function HeroHomeOne() {
var site = getConfig()[0];
return (
<>
<section className="appie-hero-area">
<div className="container">
<div className="row align-items-center">
<div className="col-lg-6">
<div className="appie-hero-content">
{/*<span>Welcome To WrenchBoard..</span>*/}
<h1 className="appie-title">
Turn Chores into Exciting Challenges and Earn <span className='earn-rewards px-2'>Rewards!</span>
</h1>
<p>
Your place to set family goals and reward achievements. Find tasks to earn from, or build a tasks portfolio and find others to perform tasks for you. </p>
<ul>
<li>
<a href={process.env.REACT_APP_APPLE_APP} className="dark" target="_blank">
<i className="fab fa-apple" /> Download for iOS
</a>
</li>
<li>
<a className="item-2 light" href={process.env.REACT_APP_ANDROID_APP} target="_blank">
<i className="fab fa-google-play" /> Download for
Android
</a>
</li>
</ul>
</div>
</div>
<div className="col-lg-6">
<div className="appie-hero-thumb">
<div
className="thumb wow animated fadeInUp"
data-wow-duration="2000ms"
data-wow-delay="200ms"
>
{/* <img src={heroThumbOne} alt="WrenchBoard" /> */}
<div style={{width: '350px', margin: 'auto'}}>
<CustomSlider
images={[heroThumbOne, heroThumbOne, heroThumbOne]}
speed='5'
indicatorColor='#333'
/>
</div>
</div>
<div
className="thumb-2 wow animated fadeInRight"
data-wow-duration="2000ms"
data-wow-delay="600ms"
>
<img src={heroThumbTwo} alt="" />
</div>
</div>
</div>
</div>
var site = getConfig()[0];
return (
<>
<section className="appie-hero-area">
<div className="container">
<div className="row align-items-center">
<div className="col-lg-6">
<div className="appie-hero-content">
{/*<span>Welcome To WrenchBoard..</span>*/}
<h1 className="appie-title">
Turn Chores into Exciting Challenges and Earn{" "}
<span className="earn-rewards px-2">Rewards!</span>
</h1>
<p>
Your place to set family goals and reward achievements. Find
tasks to earn from, or build a tasks portfolio and find others
to perform tasks for you.{" "}
</p>
<ul>
<li>
<a
href={process.env.REACT_APP_APPLE_APP}
className="dark"
target="_blank"
>
<i className="fab fa-apple" /> Download for iOS
</a>
</li>
<li>
<a
className="item-2 light"
href={process.env.REACT_APP_ANDROID_APP}
target="_blank"
>
<i className="fab fa-google-play" /> Download for Android
</a>
</li>
</ul>
</div>
</div>
<div className="col-lg-6">
<div className="appie-hero-thumb">
<div
className="thumb wow animated fadeInUp"
data-wow-duration="2000ms"
data-wow-delay="200ms"
>
{/* <img src={heroThumbOne} alt="WrenchBoard" /> */}
<div style={{ width: "350px", margin: "auto" }}>
<CustomSlider
images={[heroThumbOne, heroThumbOne, heroThumbOne]}
speed="5"
indicatorColor="#333"
/>
</div>
</div>
</section>
</>
);
<div
className="thumb-2 wow animated fadeInRight"
data-wow-duration="2000ms"
data-wow-delay="600ms"
>
<img src={heroThumbTwo} alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
</>
);
}
export default HeroHomeOne;