Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7295516cca | |||
| 0bcac15793 | |||
| 6f9020a9cc | |||
| c8128ee4c9 |
@@ -8,8 +8,8 @@ import FooterHomeOne from './FooterHomeOne';
|
|||||||
import HeroHomeOne from './HeroHomeOne';
|
import HeroHomeOne from './HeroHomeOne';
|
||||||
// import HomeOneHeader from './HomeOneHeader';
|
// import HomeOneHeader from './HomeOneHeader';
|
||||||
import ServicesHomeOne from './ServicesHomeOne';
|
import ServicesHomeOne from './ServicesHomeOne';
|
||||||
// import TrafficHomeOne from './TrafficHomeOne';
|
import TrafficHomeOne from './TrafficHomeOne';
|
||||||
// import TrafficHomeTwo from './TrafficHomeTwo';
|
import TrafficHomeTwo from './TrafficHomeTwo';
|
||||||
//import FeaturedScreen from './FeaturedScreen';
|
//import FeaturedScreen from './FeaturedScreen';
|
||||||
import AfterHero from './AfterHero';
|
import AfterHero from './AfterHero';
|
||||||
import NextAfterHero from './NextAfterHero';
|
import NextAfterHero from './NextAfterHero';
|
||||||
@@ -29,8 +29,9 @@ function HomeOne() {
|
|||||||
<AfterHero />
|
<AfterHero />
|
||||||
<NextAfterHero />
|
<NextAfterHero />
|
||||||
<ServicesHomeOne />
|
<ServicesHomeOne />
|
||||||
|
<TrafficHomeOne />
|
||||||
|
<TrafficHomeTwo />
|
||||||
<FooterHomeOne />
|
<FooterHomeOne />
|
||||||
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import serviceThumb from '../assets/images/service-thumb-1.png';
|
import serviceThumb from '../assets/images/service-thumb-1.png';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
function NextAfterHero() {
|
function NextAfterHero() {
|
||||||
return (
|
return (
|
||||||
@@ -111,7 +112,7 @@ function NextAfterHero() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="col-lg-5">
|
<div className="col-lg-5">
|
||||||
<div className="service-thumb">
|
<div className="service-thumb">
|
||||||
<img src={serviceThumb} alt="" />
|
<Image src={serviceThumb} alt="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import thumb from '../../assets/images/home-app-page.png';
|
import Image from 'next/image';
|
||||||
|
import thumb from '../assets/images/home-app-page.png';
|
||||||
|
|
||||||
function TrafficHomeTwo() {
|
function TrafficHomeTwo() {
|
||||||
return (
|
return (
|
||||||
@@ -63,13 +64,22 @@ function TrafficHomeTwo() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="traffic-thumb ">
|
<div className="traffic-thumb ">
|
||||||
<img
|
{/* <img
|
||||||
className="wow animated fadeInRight"
|
className="wow animated fadeInRight"
|
||||||
data-wow-duration="2000ms"
|
data-wow-duration="2000ms"
|
||||||
data-wow-delay="200ms"
|
data-wow-delay="200ms"
|
||||||
src={thumb}
|
src={thumb}
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/> */}
|
||||||
|
<Image
|
||||||
|
src={thumb}
|
||||||
|
width={'100%'}
|
||||||
|
height={'100%'}
|
||||||
|
alt="Image"
|
||||||
|
className="wow animated fadeInRight"
|
||||||
|
data-wow-duration="2000ms"
|
||||||
|
data-wow-delay="200ms"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import thumb from "../../assets/images/PerformingTask2.jpg";
|
import thumb from "../assets/images/PerformingTask2.jpg";
|
||||||
import getConfig from "./../../Config/config";
|
import getConfig from "./../../Config/config";
|
||||||
|
import Image from "next/image";
|
||||||
|
|
||||||
function TrafficHomeOne() {
|
function TrafficHomeOne() {
|
||||||
return (
|
return (
|
||||||
@@ -37,8 +38,10 @@ function TrafficHomeOne() {
|
|||||||
className="withFadeEdge position-absolute bg-transparent w-100 h-100"
|
className="withFadeEdge position-absolute bg-transparent w-100 h-100"
|
||||||
style={{ zIndex: "1" }}
|
style={{ zIndex: "1" }}
|
||||||
></div>
|
></div>
|
||||||
<img
|
<Image
|
||||||
className="position-relative wow animated fadeInRight p-1"
|
className="position-relative wow animated fadeInRight p-1"
|
||||||
|
width={'100%'}
|
||||||
|
height={'100%'}
|
||||||
data-wow-duration="2000ms"
|
data-wow-duration="2000ms"
|
||||||
data-wow-delay="200ms"
|
data-wow-delay="200ms"
|
||||||
src={thumb}
|
src={thumb}
|
||||||
|
|||||||
Reference in New Issue
Block a user