Compare commits

...

8 Commits

Author SHA1 Message Date
victorAnumudu dae969adf3 made faq to show information where public is 1 2023-06-29 16:48:56 +01:00
ameye 0e6a4f00b9 Merge branch 'font-revamp' of WrenchBoard/WrenchBoardMainSite into master 2023-06-28 21:27:57 +00:00
victorAnumudu ded83ed1bb home page font fix 2023-06-28 21:58:27 +01:00
CHIEFSOFT\ameye 70185d8069 home image 2023-06-28 06:44:37 -04:00
ameye 9fba8adc43 Merge branch 'about-icon-centralized' of WrenchBoard/WrenchBoardMainSite into master 2023-06-28 10:42:21 +00:00
victorAnumudu 2985d27c43 service banner replaced with breadcrumb 2023-06-28 07:21:07 +01:00
victorAnumudu 1478578a2e about icon centralized 2023-06-28 07:17:15 +01:00
ameye b5b97fb04f Merge branch 'job-listing' of WrenchBoard/WrenchBoardMainSite into master 2023-06-27 22:44:54 +00:00
6 changed files with 24 additions and 16 deletions
+12 -12
View File
@@ -174,36 +174,36 @@ p {
.appie-section-title .appie-title {
font-size: 44px;
line-height: 54px;
color: #08538d;
letter-spacing: 4.6px;
/* color: #08538d; */
letter-spacing: 2px;
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.appie-section-title .appie-title {
font-size: 36px;
line-height: 46px;
color: #08538d;
/* color: #08538d; */
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.appie-section-title .appie-title {
font-size: 36px;
line-height: 46px;
color: #08538d;
/* color: #08538d; */
}
}
@media (max-width: 767px) {
.appie-section-title .appie-title {
font-size: 26px;
line-height: 36px;
color: #08538d;
/* color: #08538d; */
}
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
.appie-section-title .appie-title {
font-size: 36px;
line-height: 46px;
color: #08538d;
/* color: #08538d; */
}
}
.appie-section-title p {
@@ -1432,7 +1432,7 @@ p {
line-height: 80px;
padding: 0 80px;
color: #08538d;
letter-spacing: 4.6px;
letter-spacing: 2px;
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
@@ -2474,7 +2474,7 @@ p {
.appie-single-service-2 {
border: 1px solid #eef0f4;
border-radius: 10px;
padding: 48px;
padding: 40px;
-webkit-transition: all 0.3s ease-out 0s;
-moz-transition: all 0.3s ease-out 0s;
-ms-transition: all 0.3s ease-out 0s;
@@ -2553,19 +2553,19 @@ p {
}
.appie-single-service-2.appie-single-service-about {
border-radius: 0;
padding: 0 90px 30px 0;
/* padding: 0 30px 30px 0; */
border: 0;
transition: all linear 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.appie-single-service-2.appie-single-service-about {
padding-right: 30px;
/* padding-right: 30px; */
}
}
@media (max-width: 767px) {
.appie-single-service-2.appie-single-service-about {
padding-right: 50px;
padding-left: 50px;
/* padding-right: 50px;
padding-left: 50px; */
}
}
.appie-single-service-2.appie-single-service-about .icon i {
Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 58 KiB

+1 -1
View File
@@ -1,5 +1,5 @@
import React from 'react';
import thumb from '../../assets/images/PerformingTask.jpg';
import thumb from '../../assets/images/PerformingTaskNew.png';
import getConfig from './../../Config/config'
function TrafficHomeOne() {
+2 -2
View File
@@ -41,7 +41,7 @@ function FAQService() {
<div className='row'>
<div class="col-12 col-lg-6 accordion" id="accordionExample">
{faq.map((item, index)=>{
if(index%2 == 0){
if(index%2 == 0 && item.public != 0){
return(
<div key={index} className='my-3'>
<Accordion name={`faq${index}`} datas={item} accordionHandler={accordionHandler} isOpen={isOpen} />
@@ -52,7 +52,7 @@ function FAQService() {
</div>
<div class="col-12 col-lg-6 accordion" id="accordionExample">
{faq.map((item, index)=>{
if(index%2 != 0){
if(index%2 != 0 && item.public != 0){
return(
<div key={index} className='my-3'>
<Accordion name={`faq${index}`} datas={item} accordionHandler={accordionHandler} isOpen={isOpen} />
+9 -1
View File
@@ -8,6 +8,7 @@ import Drawer from '../Mobile/Drawer';
import DetailsService from './DetailsService';
import HeaderService from './HeaderService';
import HeroService from './HeroService';
import HeroNews from '../News/HeroNews';
function Service() {
useEffect(() => {
@@ -18,7 +19,14 @@ function Service() {
<>
<Drawer drawer={drawer} action={drawerAction.toggle} />
<HeaderService action={drawerAction.toggle} />
<HeroService title="Our Service to you" />
{/* <HeroService title="Our Service to you" /> */}
<HeroNews
title="Services"
breadcrumb={[
{ link: '/', title: 'home' },
{ link: '/service', title: 'Service' },
]}
/>
<DetailsService />
{/*<ProjectHomeOne />*/}
<FooterHomeOne />