Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d86cbab6d | |||
| de5ea3ac0a | |||
| 048203399d | |||
| 69e357c37a |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 48 KiB |
@@ -1435,12 +1435,6 @@ p {
|
|||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
|
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
|
||||||
}
|
}
|
||||||
.appie-title .earn-rewards{
|
|
||||||
border-radius: 7px;
|
|
||||||
background-color: rgb(245, 71, 71) !important;
|
|
||||||
/* text-shadow: 2px 2px 2px #fff; */
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
||||||
.appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
|
.appie-hero-area.appie-hero-3-area .appie-hero-content .appie-title {
|
||||||
font-size: 54px;
|
font-size: 54px;
|
||||||
@@ -2671,6 +2665,14 @@ p {
|
|||||||
.service-details-sidebar .service-download-widget a {
|
.service-details-sidebar .service-download-widget a {
|
||||||
padding: 13px 30px;
|
padding: 13px 30px;
|
||||||
color: #505056;
|
color: #505056;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: '2px'
|
||||||
|
}
|
||||||
|
.service-details-sidebar .service-download-widget a img {
|
||||||
|
width: 25px;
|
||||||
|
height: 25px;
|
||||||
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
.service-details-sidebar .service-download-widget a:hover {
|
.service-details-sidebar .service-download-widget a:hover {
|
||||||
color: #4687ba;
|
color: #4687ba;
|
||||||
|
|||||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
@@ -18,7 +18,7 @@ function HeroHomeOne() {
|
|||||||
<div className="appie-hero-content">
|
<div className="appie-hero-content">
|
||||||
{/*<span>Welcome To WrenchBoard..</span>*/}
|
{/*<span>Welcome To WrenchBoard..</span>*/}
|
||||||
<h1 className="appie-title">
|
<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 Rewards!
|
||||||
</h1>
|
</h1>
|
||||||
<p>
|
<p>
|
||||||
The Marketplace platform to earn money with your skills, find, buy and sell professional services. Connect, build an outstanding portfolio and link to an integrated community with best services via a digital platform.
|
The Marketplace platform to earn money with your skills, find, buy and sell professional services. Connect, build an outstanding portfolio and link to an integrated community with best services via a digital platform.
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import getConfig from './../../Config/config'
|
import getConfig from './../../Config/config'
|
||||||
|
import AboutIcon from '../../assets/images/icon/about-us.ico'
|
||||||
|
import HomeIcon from '../../assets/images/icon/home-icon.ico'
|
||||||
|
import UseCaseIcon from '../../assets/images/icon/use-case.ico'
|
||||||
|
import PrivacyIcon from '../../assets/images/icon/privacy-policy.ico'
|
||||||
|
import TermsIcon from '../../assets/images/icon/term-and-conditions.ico'
|
||||||
|
|
||||||
function ServiceSideMenu() {
|
function ServiceSideMenu() {
|
||||||
var site = getConfig()[0];
|
var site = getConfig()[0];
|
||||||
@@ -9,20 +14,23 @@ function ServiceSideMenu() {
|
|||||||
|
|
||||||
<div className="service-download-widget">
|
<div className="service-download-widget">
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<i className="fal fa-download"></i>
|
{/* <i className="fal fa-download"></i> */}
|
||||||
|
<img src={HomeIcon} alt='sidenav-icon' />
|
||||||
<span>Home</span>
|
<span>Home</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="service-download-widget">
|
<div className="service-download-widget">
|
||||||
<a href="/about-us">
|
<a href="/about-us">
|
||||||
<i className="fal fa-download"></i>
|
{/* <i className="fal fa-download"></i> */}
|
||||||
|
<img src={AboutIcon} alt='sidenav-icon' />
|
||||||
<span>About us</span>
|
<span>About us</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div className="service-download-widget">
|
<div className="service-download-widget">
|
||||||
<a href="/use-cases">
|
<a href="/use-cases">
|
||||||
<i className="fal fa-file-pdf"></i>
|
{/* <i className="fal fa-file-pdf"></i> */}
|
||||||
|
<img src={UseCaseIcon} alt='sidenav-icon' />
|
||||||
<span>Use Cases</span>
|
<span>Use Cases</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -31,13 +39,15 @@ function ServiceSideMenu() {
|
|||||||
|
|
||||||
<div className="service-download-widget">
|
<div className="service-download-widget">
|
||||||
<a href="/privacy">
|
<a href="/privacy">
|
||||||
<i className="fal fa-download"></i>
|
{/* <i className="fal fa-download"></i> */}
|
||||||
|
<img src={PrivacyIcon} alt='sidenav-icon' />
|
||||||
<span>Privacy Policy</span>
|
<span>Privacy Policy</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div className="service-download-widget">
|
<div className="service-download-widget">
|
||||||
<a href="/terms">
|
<a href="/terms">
|
||||||
<i className="fal fa-file-pdf"></i>
|
{/* <i className="fal fa-file-pdf"></i> */}
|
||||||
|
<img src={TermsIcon} alt='sidenav-icon' />
|
||||||
<span>Terms of use</span>
|
<span>Terms of use</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||