Merge branch 'master' of http://gitlab.chiefsoft.net/WrenchBoard/WrenchBoardMainSite into Performing-task-Text-and-Image
This commit was merged in pull request #32.
This commit is contained in:
@@ -82,7 +82,8 @@ function Forms() {
|
||||
<i className="fab fa-facebook-f"></i>
|
||||
</a>
|
||||
<a className="twi" href={process.env.REACT_APP_TWITTER_LINK}>
|
||||
<i className="fab fa-twitter"></i>
|
||||
{/* <i className="fab fa-twitter"></i> */}
|
||||
<i className="fab fa-x-twitter" />
|
||||
</a>
|
||||
<a className="you" href="#">
|
||||
<i className="fab fa-youtube"></i>
|
||||
|
||||
@@ -8,7 +8,7 @@ import Blogs from '../News/Blogs';
|
||||
function BlogHomeOne() {
|
||||
return (
|
||||
<>
|
||||
<section className="appie-blog-area pt-90 pb-95">
|
||||
<section className="appie-blog-area pt-45 pb-95">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-12">
|
||||
|
||||
@@ -34,7 +34,8 @@ function FooterHomeOne({ className }) {
|
||||
</li>
|
||||
<li>
|
||||
<a href={process.env.REACT_APP_TWITTER_LINK}>
|
||||
<i className="fab fa-twitter" />
|
||||
{/* <i className="fab fa-twitter" /> */}
|
||||
<i className="fab fa-x-twitter" />
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
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 heroThumbOne1 from '../../assets/images/app-thumb-2.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];
|
||||
@@ -18,31 +21,20 @@ function HeroHomeOne() {
|
||||
<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>
|
||||
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>
|
||||
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"
|
||||
>
|
||||
<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 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>
|
||||
@@ -56,11 +48,11 @@ function HeroHomeOne() {
|
||||
data-wow-delay="200ms"
|
||||
>
|
||||
{/* <img src={heroThumbOne} alt="WrenchBoard" /> */}
|
||||
<div style={{ width: "350px", margin: "auto" }}>
|
||||
<div style={{ width: '350px', margin: 'auto' }}>
|
||||
<CustomSlider
|
||||
images={[heroThumbOne, heroThumbOne, heroThumbOne]}
|
||||
speed="5"
|
||||
indicatorColor="#0D1133"
|
||||
images={[heroThumbOne, heroThumbOne1, heroThumbOne]}
|
||||
speed='5'
|
||||
indicatorColor='#333'
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -75,6 +67,13 @@ function HeroHomeOne() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
className="thumb-2 wow animated fadeInRight"
|
||||
data-wow-duration="2000ms"
|
||||
data-wow-delay="600ms"
|
||||
>
|
||||
<img src={heroThumbTwo} alt="" />
|
||||
</div>
|
||||
</section>
|
||||
</>
|
||||
);
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import React from "react";
|
||||
import IconOne from "../../assets/images/icon/usericon.png";
|
||||
import IconTwo from "../../assets/images/icon/Findtaskicon.png";
|
||||
import IconThree from "../../assets/images/icon/taskicon.png";
|
||||
import IconFour from "../../assets/images/icon/walleticon.png";
|
||||
import React from 'react';
|
||||
import IconOne from '../../assets/images/icon/play.png';
|
||||
import IconTwo from '../../assets/images/icon/task.png';
|
||||
import IconThree from '../../assets/images/icon/target.png';
|
||||
import IconFour from '../../assets/images/icon/reward.png';
|
||||
|
||||
function ServiceItem({ icon, title, description, index }) {
|
||||
return (
|
||||
@@ -26,25 +26,23 @@ function ServicesHomeOne({ className }) {
|
||||
const serviceItems = [
|
||||
{
|
||||
icon: IconOne,
|
||||
title: "Free Account",
|
||||
description: "Join WrenchBoard. Create an account for Income.",
|
||||
title: 'Free Account',
|
||||
description: 'Join WrenchBoard. Get your free account.',
|
||||
},
|
||||
{
|
||||
icon: IconTwo,
|
||||
title: "Find Task",
|
||||
description: "Build a Self-Portfolio with sole purpose to Cash-Out.",
|
||||
title: 'Set Goals',
|
||||
description: 'Suggest or find what you want to get rewarded for.',
|
||||
},
|
||||
{
|
||||
icon: IconThree,
|
||||
title: "Complete",
|
||||
description:
|
||||
"Organize and Manage your teams efficiently. Manage your workgroup.",
|
||||
title: 'Complete',
|
||||
description: 'Complete task, and notify assigner with ease.',
|
||||
},
|
||||
{
|
||||
icon: IconFour,
|
||||
title: "Get Paid",
|
||||
description:
|
||||
"Start Boosting your Income by earning Cash for your Time and Skills.",
|
||||
title: 'Reward',
|
||||
description: 'Task completed. Find your reward.',
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import getConfig from './../../Config/config'
|
||||
function TrafficHomeOne() {
|
||||
var site = getConfig()[0];
|
||||
return (
|
||||
<section className="wrench-on-area pt-140 pb-180">
|
||||
<section className="wrench-on-area pt-90 pb-45">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="col-lg-7">
|
||||
|
||||
Reference in New Issue
Block a user