services section
This commit is contained in:
@@ -1,43 +1,69 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// AI Solutions: Innovating how we reach audiences—because the future is now.
|
||||||
|
|
||||||
const FeatureContent = [
|
const FeatureContent = [
|
||||||
{
|
{
|
||||||
icon: "60",
|
icon: "60",
|
||||||
meta: "Smart popups",
|
meta: "Paid Search",
|
||||||
subTitle: `Create customized popups and show the message at the lorem`,
|
subTitle: `Capturing attention when it matters most`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "61",
|
icon: "61",
|
||||||
meta: "Embeded Forms",
|
meta: "Paid Display",
|
||||||
subTitle: `Collect website leads with embedded forms and integrate easily.`,
|
subTitle: ` Making your brand unmissable.`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: "62",
|
icon: "62",
|
||||||
meta: "Autoresponder",
|
meta: "Sponsored Content",
|
||||||
subTitle: `Send welcome email to your new subscribers with a code.`,
|
subTitle: `Seamlessly blending your message into the conversation.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "60",
|
||||||
|
meta: "Content Creation",
|
||||||
|
subTitle: `Crafting compelling narratives through AI-driven insightsm`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "61",
|
||||||
|
meta: "Influencer Campaigns",
|
||||||
|
subTitle: `Harnessing the voices that matter.`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "62",
|
||||||
|
meta: "Analytics",
|
||||||
|
subTitle: ` Fine-tuning every campaign to maximize impact.`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const FeaturesEight = () => {
|
const FeaturesEight = () => {
|
||||||
return (
|
return (
|
||||||
<div className="row justify-content-center">
|
<>
|
||||||
{FeatureContent.map((val, i) => (
|
<div style={{ lineHeight : 1, padding: 1, textAlign: 'center' }}>
|
||||||
<div
|
<div className="title-style-five"><h2>Our Services</h2></div>
|
||||||
className="col-lg-4 col-md-6"
|
<div className="font-rubik">We're not just signing contracts; we're forging partnerships. Our services include: </div>
|
||||||
key={i}
|
</div>
|
||||||
data-aos="fade-up"
|
<div className="row justify-content-center">
|
||||||
data-aos-duration="1200"
|
{FeatureContent.map((val, i) => (
|
||||||
>
|
<div
|
||||||
<div className="block-style-thirteen">
|
className="col-lg-4 col-md-6"
|
||||||
<div className="icon">
|
key={i}
|
||||||
<Image width={78} height={78} style={{objectFit:'contain'}} src={`/images/icon/${val.icon}.svg`} alt="icon" />
|
data-aos="fade-up"
|
||||||
</div>
|
data-aos-duration="1200"
|
||||||
<div className="title font-rubik">{val.meta}</div>
|
>
|
||||||
<p>{val.subTitle}</p>
|
<div className="block-style-thirteen">
|
||||||
</div>
|
<div className="icon">
|
||||||
|
<Image width={78} height={78} style={{objectFit:'contain'}} src={`/images/icon/${val.icon}.svg`} alt="icon" />
|
||||||
|
</div>
|
||||||
|
<div className="title font-rubik">{val.meta}</div>
|
||||||
|
<p>{val.subTitle}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
))}
|
</>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user