service section
This commit is contained in:
@@ -4,7 +4,7 @@ import FancyVideoFive from "../../../components/video/FancyVideoFive";
|
||||
import CounterThree from "../../../components/counter/CounterThree";
|
||||
import FooterTwo from "../../../components/footer/FooterTwo";
|
||||
import CopyRightTwo from "../../../components/footer/CopyRightTwo";
|
||||
import FeatureSixV2 from "../../../components/features/FeatureSixV2";
|
||||
import ContentServiceSection from "../../../components/features/ContentServiceSection";
|
||||
import CallToActionThree from "../../../components/call-to-action/CallToActionThree";
|
||||
import FancyFeatureThirtyThree from "../../../components/features/FancyFeatureThirtyThree";
|
||||
import Image from "next/image";
|
||||
@@ -85,16 +85,16 @@ const ServiceV1 = () => {
|
||||
<div className="title-style-two text-center mb-85 md-mb-40">
|
||||
<h2>
|
||||
<span>
|
||||
Explore Services
|
||||
Our Services
|
||||
<Image width={375} height={44} src="/images/shape/line-shape-2.svg" alt="shape" />
|
||||
</span>
|
||||
</h2>
|
||||
<div className="sub-text mt-15">
|
||||
We’re not just signing contracts; we’re forging partnerships. Our services include:
|
||||
Our mission is to craft powerful content marketing strategies that don’t just sit pretty but work in harmony with paid advertising to drive serious results.
|
||||
</div>
|
||||
</div>
|
||||
{/* End .title */}
|
||||
<FeatureSixV2 />
|
||||
<ContentServiceSection />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
import React from "react";
|
||||
import Link from "next/link";
|
||||
import { FeatureContentService } from "@/data/service";
|
||||
import Image from "next/image";
|
||||
|
||||
|
||||
const ContentServiceSection = () => {
|
||||
return (
|
||||
<div className="row justify-content-center">
|
||||
{FeatureContentService.map((val, i) => (
|
||||
<div
|
||||
className="col-lg-4 col-md-6"
|
||||
key={i}
|
||||
data-aos="fade-up"
|
||||
data-aos-duration="1200"
|
||||
data-aos-delay={val.dataDelay}
|
||||
>
|
||||
<Link href={`/services/${val.id}`} className="block-style-five">
|
||||
<div className="icon">
|
||||
<Image width={75} height={75} style={{objectFit:'contain'}} src={`/images/icon/${val.icon}.svg`} alt="icon" />
|
||||
</div>
|
||||
<h6 className="title">
|
||||
<span>{val.meta}</span>
|
||||
</h6>
|
||||
<p>{val.subTitle}</p>
|
||||
</Link>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContentServiceSection;
|
||||
+42
-2
@@ -145,12 +145,52 @@ export const serviceContent = [
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
export const FeatureContentService = [
|
||||
{ id:10 ,
|
||||
icon: "20",
|
||||
meta: "Data Driven Content",
|
||||
subTitle: `Utilizing your proprietary content with 3rd party and public data to create engaging visualizations, infographics, motion graphics.`,
|
||||
dataDelay: "0",
|
||||
},
|
||||
{ id:11 ,
|
||||
icon: "21",
|
||||
meta: "Content Creation",
|
||||
subTitle: `With AI-driven insights, we shape written and video narratives that resonate deeply`,
|
||||
dataDelay: "100",
|
||||
},
|
||||
{ id:12 ,
|
||||
icon: "22",
|
||||
meta: "Autoresponder",
|
||||
subTitle: `Send welcome email to your new subscribers with a code.`,
|
||||
dataDelay: "0",
|
||||
},
|
||||
{ id:13 ,
|
||||
icon: "21",
|
||||
meta: "Embeded Forms",
|
||||
subTitle: `Collect website leads with embedded forms and integrate easily.`,
|
||||
dataDelay: "100",
|
||||
},
|
||||
{ id:14 ,
|
||||
icon: "22",
|
||||
meta: "Autoresponder",
|
||||
subTitle: `Send welcome email to your new subscribers with a code.`,
|
||||
dataDelay: "0",
|
||||
},
|
||||
{ id:15 ,
|
||||
icon: "20",
|
||||
meta: "Smart popups",
|
||||
subTitle: `Create customized popups and show the message at the lorem`,
|
||||
dataDelay: "100",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
export const allService = [
|
||||
...featuresContent,
|
||||
...featuresContentTwo,
|
||||
...FeatureContentThree,
|
||||
...serviceContent,
|
||||
|
||||
|
||||
...FeatureContentService,
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user